From: Oleg Broytman Date: Mon, 30 Aug 2021 06:28:24 +0000 (+0300) Subject: Tests(tox): Stop collecting coverage X-Git-Tag: 0.1.6~9^2 X-Git-Url: https://git.phdru.name/?p=m_librarian.git;a=commitdiff_plain;h=1f4e7b7b3971b23387aa4177f63e6fe56a40babf Tests(tox): Stop collecting coverage --- diff --git a/devscripts/requirements/requirements_tests.txt b/devscripts/requirements/requirements_tests.txt index 973ffba..935cc08 100644 --- a/devscripts/requirements/requirements_tests.txt +++ b/devscripts/requirements/requirements_tests.txt @@ -2,5 +2,4 @@ pytest < 5.0; python_version == '2.7' or python_version == '3.4' pytest; python_version >= '3.5' -pytest-cov ppu diff --git a/tox.ini b/tox.ini index 14f1c19..3440b21 100644 --- a/tox.ini +++ b/tox.ini @@ -28,14 +28,14 @@ platform = linux|darwin commands = {[testenv]commands} -rm.py -f /tmp/test.sqdb - {envpython} -m pytest --cov=m_librarian -D sqlite:///tmp/test.sqdb + {envpython} -m pytest -D sqlite:///tmp/test.sqdb [testenv:{py27,py34,py35,py36,py37,py38,py39}-sqlite-w32] platform = win32 commands = {[testenv]commands} -rm.py -f {env:TEMP}/test.sqdb - pytest --cov=m_librarian -D sqlite:/{env:TEMP}/test.sqdb?debug=1 + pytest -D sqlite:/{env:TEMP}/test.sqdb?debug=1 rm.py -f {env:TEMP}/test.sqdb # flake8