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 39171dd commit ba93e73Copy full SHA for ba93e73
suite.py
@@ -688,9 +688,9 @@ def extract_time(file):
688
timings = json.load(open(json_file))
689
# Check for proper format
690
item = next(iter(timings.values()))
691
- if not isinstance(item, dict): raise JSONDecodeError()
+ if not isinstance(item, dict): raise ValueError
692
return timings
693
- except (OSError, JSONDecodeError, StopIteration): pass
+ except (OSError, ValueError, JSONDecodeError, StopIteration): pass
694
695
valid_dirs, all_tests = self.get_run_history(check_activity=False)
696
0 commit comments