File tree 1 file changed +9
-1
lines changed
tests/aws/services/lambda_/event_source_mapping 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 7
7
from localstack_snapshot .snapshots .transformer import KeyValueBasedTransformer , SortingTransformer
8
8
9
9
from localstack .aws .api .lambda_ import InvalidParameterValueException , Runtime
10
+ from localstack .config import is_env_true
10
11
from localstack .testing .aws .lambda_utils import _await_event_source_mapping_enabled
11
12
from localstack .testing .aws .util import is_aws_cloud
12
13
from localstack .testing .pytest import markers
@@ -1601,7 +1602,14 @@ def test_duplicate_event_source_mappings(
1601
1602
20 ,
1602
1603
100 ,
1603
1604
1_000 ,
1604
- 10_000 ,
1605
+ pytest .param (
1606
+ 10_000 ,
1607
+ id = "10000" ,
1608
+ marks = pytest .mark .skipif (
1609
+ condition = not is_env_true ("TEST_PERFORMANCE" ),
1610
+ reason = "Too resource intensive to be randomly allocated to a runner." ,
1611
+ ),
1612
+ ),
1605
1613
],
1606
1614
)
1607
1615
@markers .aws .only_localstack
You can’t perform that action at this time.
0 commit comments