Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ mypy:
mypy --no-warn-redundant-casts --no-warn-unused-ignores examples/*.py zeroconf

test:
pytest -v tests
pytest --timeout=60 -v tests

test_coverage:
pytest -v --cov=zeroconf --cov-branch --cov-report html --cov-report term-missing tests
pytest --timeout=60 -v --cov=zeroconf --cov-branch --cov-report html --cov-report term-missing tests

autopep8:
autopep8 --max-line-length=$(MAX_LINE_LENGTH) -i setup.py examples zeroconf
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ pylint
pytest
pytest-asyncio
pytest-cov
pytest-timeout