File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed
localstack-core/localstack
tests/aws/services/events Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 31
31
"ES_CUSTOM_BACKEND" , # deprecated in 0.14.0, removed in 3.0.0
32
32
"ES_MULTI_CLUSTER" , # deprecated in 0.14.0, removed in 3.0.0
33
33
"ES_ENDPOINT_STRATEGY" , # deprecated in 0.14.0, removed in 3.0.0
34
+ "EVENT_RULE_ENGINE" ,
34
35
"IAM_SOFT_MODE" ,
35
36
"KINESIS_PROVIDER" , # Not functional; deprecated in 2.0.0, removed in 3.0.0
36
37
"KINESIS_ERROR_PROBABILITY" ,
Original file line number Diff line number Diff line change
1
+ from localstack .packages import Package , package
2
+
3
+
4
+ @package (name = "event-ruler" )
5
+ def event_ruler_package () -> Package :
6
+ from localstack .services .events .packages import event_ruler_package
7
+
8
+ return event_ruler_package
Original file line number Diff line number Diff line change 22
22
COMPLEX_MULTI_KEY_EVENT = os .path .join (REQUEST_TEMPLATE_DIR , "complex_multi_key_event.json" )
23
23
24
24
SKIP_LABELS = [
25
- # Failing exception tests:
25
+ # TODO: fix failing exception tests (not yet implemented)
26
26
"arrays_empty_EXC" ,
27
27
"content_numeric_EXC" ,
28
28
"content_numeric_operatorcasing_EXC" ,
31
31
"int_nolist_EXC" ,
32
32
"operator_case_sensitive_EXC" ,
33
33
"string_nolist_EXC" ,
34
- # Failing tests:
34
+ # TODO: fix failing tests for Python event rule engine
35
35
"complex_or" ,
36
36
"content_anything_but_ignorecase" ,
37
37
"content_anything_but_ignorecase_list" ,
You can’t perform that action at this time.
0 commit comments