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.
1 parent 4900eaf commit 5f79d27Copy full SHA for 5f79d27
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