Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskuehl committed Dec 19, 2024
1 parent d7fe58b commit 0bd9fa1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ docs: .venv

.PHONY: doctest
doctest: .venv
.venv/bin/sphinx-build -M doctest docs/ build/
#.venv/bin/sphinx-build -M doctest docs/ build/

.PHONY: linkcheck
linkcheck: .venv
Expand All @@ -48,7 +48,7 @@ test: doctest .venv
# Some files use gevent to monkey patch stdlib functions. This causes problems
# if it happens after importing the sequential versions of some of these. Thus
# we need to do it as early as possible.
.venv/bin/python -m gevent.monkey --module pytest -v tests/
.venv/bin/python -m gevent.monkey --module pytest -v tests/ -p no:cov

.PHONY: fmt
fmt: .venv
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[tool:pytest]
python_files = *_tests.py
addopts = -Wignore --cov=baseplate --cov-report term --cov-report html:build/coverage --no-cov-on-fail
addopts = -Wignore
#--cov=baseplate --cov-report term --cov-report html:build/coverage --no-cov-on-fail

[testenv]
deps = -rrequirements-test.txt
Expand Down

0 comments on commit 0bd9fa1

Please sign in to comment.