We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb86f67 commit 4ae6d7bCopy full SHA for 4ae6d7b
Makefile
@@ -16,7 +16,7 @@ test:
16
python -m unittest
17
18
coverage:
19
- coverage run --source websockets,tests -m unittest
+ coverage run --source src/websockets,tests -m unittest
20
coverage html
21
coverage report --show-missing --fail-under=100
22
tox.ini
@@ -17,7 +17,7 @@ commands = python -W error::DeprecationWarning -W error::PendingDeprecationWarni
[testenv:coverage]
commands =
python -m coverage erase
- python -W default -m coverage run -m unittest {posargs}
+ python -m coverage run --source {envsitepackagesdir}/websockets,tests -m unittest {posargs}
python -m coverage report --show-missing --fail-under=100
deps = coverage
23
0 commit comments