Skip to content

Commit 53f8c19

Browse files
committed
Fix make coverage command.
1 parent eb86f67 commit 53f8c19

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ test:
1616
python -m unittest
1717

1818
coverage:
19-
coverage run --source websockets,tests -m unittest
19+
coverage run -m unittest
2020
coverage html
2121
coverage report --show-missing --fail-under=100
2222

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ omit =
2727
source =
2828
src/websockets
2929
.tox/*/lib/python*/site-packages/websockets
30+
tests
3031

3132
[coverage:report]
3233
exclude_lines =

0 commit comments

Comments
 (0)