Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.
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
5 changes: 5 additions & 0 deletions tests/aws/services/resourcegroupstaggingapi/test_rgsa.py
Original file line number Diff line number Diff line change
@@ -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):
Expand Down
Loading