Skip to content

Commit dcfb592

Browse files
authored
Merge pull request #4182 from kdaily/kdaily-remove-opsworks-collections-integ-test
Do not test opsworks collections
2 parents 54246d5 + acbe904 commit dcfb592

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/integration/test_collections.py

+4
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
'ec2': ['images'],
2828
'iam': ['signing_certificates'],
2929
'sqs': ['dead_letter_source_queues'],
30+
'opsworks': [],
3031
}
3132

3233

@@ -35,6 +36,9 @@ def all_collections():
3536
# except those which have been blocklisted.
3637
session = boto3.session.Session()
3738
for service_name in session.get_available_resources():
39+
if BLOCKLIST.get(service_name, None) == []:
40+
continue
41+
3842
resource = session.resource(
3943
service_name, region_name=REGION_MAP.get(service_name, 'us-west-2')
4044
)

0 commit comments

Comments
 (0)