Skip to content

Commit

Permalink
Unpin Py.test version; remove pytest-runner dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
akx committed Dec 21, 2023
1 parent 49ff2d7 commit 3a339a8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ clean-test: ## remove test and coverage artifacts
rm -fr htmlcov/

test :
$(PYTHON) setup.py test
pytest
$(MAKE) -C test test

upload : test
Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
pylama==7.7.1
pytest==5.2.2; python_version >= '3.0'
pytest-runner==5.2
pytest
tox==3.14.0
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ commands =
# $EXCLUDE is defined above in testenv:py27 as a workaround for Python 2
# which does not support asyncio and type hints
flake8 . --count --select=E9,F63,F7,F822,F823 --show-source --statistics {env:EXCLUDE:}
python setup.py test
pytest
make -C test test
# TODO (cclauss) Fix up all these undefined names
flake8 . --count --exit-zero --select=F821 --show-source --statistics
Expand Down

0 comments on commit 3a339a8

Please sign in to comment.