We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1da7421 + 5f79d27 commit e1beddfCopy full SHA for e1beddf
tests/test_client.py
@@ -48,9 +48,9 @@ def load_conf(filename):
48
try:
49
with open(filename) as f:
50
conf = json.load(f)
51
- except:
52
- logger.warning("Unable to open/read JSON configuration %s" % filename)
53
- raise
+ except FileNotFoundError:
+ raise unittest.SkipTest(
+ "Unable to open/read JSON configuration %s" % filename)
54
openid_configuration = {}
55
if "oidp" in conf:
56
0 commit comments