tests: Skip s3api functional tests when no s3api user configured

Change-Id: I61f141a71eddcac600058d66ddf802306df455c1
This commit is contained in:
Tim Burke 2023-03-10 13:58:02 -08:00
parent 78f13be75c
commit 052bcadb27
1 changed files with 4 additions and 0 deletions

View File

@ -46,6 +46,8 @@ class S3ApiBase(unittest.TestCase):
logging.getLogger('boto').setLevel(logging.DEBUG)
def setUp(self):
if not tf.config.get('s3_access_key'):
raise SkipTest('no s3api user configured')
if 's3api' not in tf.cluster_info:
raise SkipTest('s3api middleware is not enabled')
if tf.config.get('account'):
@ -83,6 +85,8 @@ class S3ApiBase(unittest.TestCase):
class S3ApiBaseBoto3(S3ApiBase):
def setUp(self):
if not tf.config.get('s3_access_key'):
raise SkipTest('no s3api user configured')
if 's3api' not in tf.cluster_info:
raise SkipTest('s3api middleware is not enabled')
try: