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 4c1753a + ba93e73 commit b4b4642Copy full SHA for b4b4642
suite.py
@@ -43,6 +43,7 @@ def __init__(self, name):
43
self.log = None
44
45
self.buildDir = ""
46
+ self.output_dir = ""
47
48
self.extra_build_dir = ""
49
@@ -688,9 +689,9 @@ def extract_time(file):
688
689
timings = json.load(open(json_file))
690
# Check for proper format
691
item = next(iter(timings.values()))
- if not isinstance(item, dict): raise JSONDecodeError()
692
+ if not isinstance(item, dict): raise ValueError
693
return timings
- except (OSError, JSONDecodeError, StopIteration): pass
694
+ except (OSError, ValueError, JSONDecodeError, StopIteration): pass
695
696
valid_dirs, all_tests = self.get_run_history(check_activity=False)
697
0 commit comments