[go: nahoru, domu]

Skip to content

Commit

Permalink
Merge pull request #4182 from kdaily/kdaily-remove-opsworks-collectio…
Browse files Browse the repository at this point in the history
…ns-integ-test

Do not test opsworks collections
  • Loading branch information
kdaily committed Jun 28, 2024
2 parents 54246d5 + acbe904 commit dcfb592
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/integration/test_collections.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
'ec2': ['images'],
'iam': ['signing_certificates'],
'sqs': ['dead_letter_source_queues'],
'opsworks': [],
}


Expand All @@ -35,6 +36,9 @@ def all_collections():
# except those which have been blocklisted.
session = boto3.session.Session()
for service_name in session.get_available_resources():
if BLOCKLIST.get(service_name, None) == []:
continue

resource = session.resource(
service_name, region_name=REGION_MAP.get(service_name, 'us-west-2')
)
Expand Down

0 comments on commit dcfb592

Please sign in to comment.