Skip to content

Commit

Permalink
pragma no cover
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasdiener committed Jan 15, 2025
1 parent bb3f696 commit 5b8913a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,6 @@ jobs:
pip install -e .
python -m pip install pytest pymbolic psutil matplotlib mpi4py
# run current test coverage
python -m pytest --durations=5 --tb=native -rxsw test/
coverage:
Expand Down
2 changes: 1 addition & 1 deletion logpyle/runalyzer_gather.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def gather_multi_file(outfile: str, infiles: list[str], fmap: dict[str, str], #
else:
feature_col_name_map[fname] = tgt_name

if os.path.exists(outfile):
if os.path.exists(outfile): # pragma: no cover
print(f"Error: output file '{outfile}' already exists, exiting.")
import sys
sys.exit(1)
Expand Down

0 comments on commit 5b8913a

Please sign in to comment.