From c9bfc6db6d4084afaea9ec1cd5d35b6de336a6a7 Mon Sep 17 00:00:00 2001 From: Benjamin Simon Date: Wed, 11 Feb 2026 12:19:32 +0100 Subject: [PATCH] skip RGTA EC2 tests in Pro --- tests/aws/services/resourcegroupstaggingapi/test_rgsa.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/aws/services/resourcegroupstaggingapi/test_rgsa.py b/tests/aws/services/resourcegroupstaggingapi/test_rgsa.py index 60e85f094c495..83c5a0b8102c8 100644 --- a/tests/aws/services/resourcegroupstaggingapi/test_rgsa.py +++ b/tests/aws/services/resourcegroupstaggingapi/test_rgsa.py @@ -1,7 +1,12 @@ +import pytest + from localstack.testing.pytest import markers +from localstack.utils.analytics.metadata import is_license_activated class TestRGSAIntegrations: + # TODO: figure out a better way, maybe via marker? e.g. @markers.localstack.ext + @pytest.mark.skipif(condition=not is_license_activated(), reason="integration test with pro") @markers.aws.validated @markers.snapshot.skip_snapshot_verify(paths=["$..PaginationToken"]) def test_get_resources(self, aws_client, cleanups, snapshot):