Skip to content

Commit

Permalink
GHI #20 Disable check so we can do our own
Browse files Browse the repository at this point in the history
  • Loading branch information
doodspav committed Dec 23, 2023
1 parent dfafbf9 commit 68eaec6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ jobs:
# get lcov summary
lcov_path = BASE_DIR / arch / "patomic.lcov"
res = subprocess.run(f'lcov --summary "{lcov_path}', capture_output=True, shell=True, check=True)
res = subprocess.run(f'lcov --summary "{lcov_path}', capture_output=True, shell=True, check=False)
if res.returncode != 0:
raise RuntimeError(f"Command '{res.args.join(' ')}' returned non-zero exit status {res.returncode}, with stderr: {res.stderr.decode()}")
lcov_summary = res.stdout.decode()
Expand Down

0 comments on commit 68eaec6

Please sign in to comment.