diff options
author | Leonardo Lazzaro <llazzaro@dc.uba.ar> | 2022-08-18 20:23:15 +0200 |
---|---|---|
committer | Leonardo Lazzaro <llazzaro@dc.uba.ar> | 2023-02-18 11:24:09 +0000 |
commit | 61bb4e783b3acc62b121a228f6b14c2462e23315 (patch) | |
tree | 548f66ac6d5c428cd63485b373308081ffb00b5b /test/util | |
parent | 73b61717a977fc9d23f1bae3f8620641a9dee1f3 (diff) |
lint: enable E722 do not use bare except
Diffstat (limited to 'test/util')
-rwxr-xr-x | test/util/test_runner.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/util/test_runner.py b/test/util/test_runner.py index 03db05c563..83308f3408 100755 --- a/test/util/test_runner.py +++ b/test/util/test_runner.py @@ -54,7 +54,7 @@ def bctester(testDir, input_basename, buildenv): try: bctest(testDir, testObj, buildenv) logging.info("PASSED: " + testObj["description"]) - except: + except Exception: logging.info("FAILED: " + testObj["description"]) failed_testcases.append(testObj["description"]) @@ -96,7 +96,7 @@ def bctest(testDir, testObj, buildenv): try: with open(os.path.join(testDir, outputFn), encoding="utf8") as f: outputData = f.read() - except: + except Exception: logging.error("Output file " + outputFn + " cannot be opened") raise if not outputData: |