Add debug output on tests being skipped

This commit is contained in:
Andrey Smirnov
2018-04-13 23:42:07 +03:00
parent 72d741a9b7
commit 9a65bbe12c
2 changed files with 6 additions and 2 deletions
+3 -1
View File
@@ -23,8 +23,10 @@ try:
swift_conn = swiftclient.Connection(auth_url, auth_username,
auth_password, auth_version=1)
else:
print "Swift tests disabled: OpenStack creds not found in the environment"
swift_conn = None
except ImportError:
except ImportError, e:
print "Swift tests disabled: unable to import swiftclient", e
swift_conn = None