Skip to content

Commit

Permalink
makefile: Remove concurrency from make cov
Browse files Browse the repository at this point in the history
usgs tests are often failing when being run concurrently.
  • Loading branch information
pmav99 committed Dec 13, 2023
1 parent bf336eb commit 7a2316f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ test:

cov:
coverage erase
python -m pytest --cov=searvey --cov-report term-missing -n auto --durations=10 --record-mode=none
python -m pytest --cov=searvey --cov-report term-missing --durations=10 --record-mode=none

clean_notebooks:
pre-commit run nbstripout -a
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -152,4 +152,4 @@ parallel = true
sigterm = true

[tool.coverage.report]
fail_under = 89.5
fail_under = 89

0 comments on commit 7a2316f

Please sign in to comment.