-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: adapt pytest.ini, coveragerc and gitignore configuration
- Loading branch information
1 parent
5ee2c1c
commit 37547f7
Showing
3 changed files
with
12 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[run] | ||
source = cars | ||
omit = | ||
# Omit tests | ||
/tests/* | ||
# Omit venv | ||
/venv*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
# content of pytest.ini | ||
[pytest] | ||
addopts = -ra | ||
addopts = -ra | ||
markers = | ||
unit_tests: Unit tests | ||
pbs_cluster_tests: PBS cluster unit tests | ||
notebook_tests: Notebook unit tests | ||
testpaths = tests | ||
norecursedirs = .git _build build tmp* venv* |