Skip to content

test(esm/sqs): Skip resource intensive flaky SQS message override test #12681

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 29, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from localstack_snapshot.snapshots.transformer import KeyValueBasedTransformer, SortingTransformer

from localstack.aws.api.lambda_ import InvalidParameterValueException, Runtime
from localstack.config import is_env_true
from localstack.testing.aws.lambda_utils import _await_event_source_mapping_enabled
from localstack.testing.aws.util import is_aws_cloud
from localstack.testing.pytest import markers
Expand Down Expand Up @@ -1601,7 +1602,14 @@ def test_duplicate_event_source_mappings(
20,
100,
1_000,
10_000,
pytest.param(
10_000,
id="10000",
marks=pytest.mark.skipif(
condition=not is_env_true("TEST_PERFORMANCE"),
reason="Too resource intensive to be randomly allocated to a runner.",
),
),
],
)
@markers.aws.only_localstack
Expand Down
Loading