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 31e0d60 + e1beddf commit 8338b3fCopy full SHA for 8338b3f
tests/test_client.py
@@ -47,9 +47,9 @@ def load_conf(filename):
47
try:
48
with open(filename) as f:
49
conf = json.load(f)
50
- except:
51
- logger.warning("Unable to open/read JSON configuration %s" % filename)
52
- raise
+ except FileNotFoundError:
+ raise unittest.SkipTest(
+ "Unable to open/read JSON configuration %s" % filename)
53
openid_configuration = {}
54
if "oidp" in conf:
55
0 commit comments