From 1f4e7b7b3971b23387aa4177f63e6fe56a40babf Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Mon, 30 Aug 2021 09:28:24 +0300 Subject: [PATCH] Tests(tox): Stop collecting coverage --- devscripts/requirements/requirements_tests.txt | 1 - tox.ini | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) 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 -- 2.39.2