Skip to content

Commit cc99232

Browse files
committed
Skip scs-0123-swift-s3 if object-store not present
Signed-off-by: Matthias Büchse <matthias.buechse@alasca.cloud>
1 parent 325a385 commit cc99232

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Tests/iaas/scs_0123_mandatory_services/mandatory_services.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ def compute_scs_0123_swift_s3(services_lookup, conn: openstack.connection.Connec
119119
This test ensures that S3 can be used to access object storage using EC2 credentials from the identity API.
120120
"""
121121
if 'object-store' not in services_lookup:
122-
logger.error('scs-0123-swift-s3 test requires catalog entry')
123-
return False
122+
logger.info('skipping scs-0123-swift-s3 because object-store not present')
123+
return True
124124
# we assume s3 is accessible via the service catalog, and Swift might exist too
125125
usable_credentials = []
126126
s3_buckets = []

0 commit comments

Comments
 (0)