Skip to content

Commit

Permalink
exclude more recent interfaces from coverage check
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Müller <[email protected]>
  • Loading branch information
marcelmbn committed Jan 17, 2025
1 parent 970faf9 commit c71bdfa
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,12 @@ markers = "optional: mark test as optional"
plugins = ["covdefaults"]
source = ["./src"]
# Exclude interfaces to external programs from coverage
omit = ["src/mindlessgen/qm/xtb.py", "src/mindlessgen/qm/orca.py"]
omit = [
"src/mindlessgen/qm/xtb.py",
"src/mindlessgen/qm/orca.py",
"src/mindlessgen/qm/tm.py",
"src/mindlessgen/qm/gxtb.py",
]

[tool.coverage.report]
fail_under = 50

0 comments on commit c71bdfa

Please sign in to comment.