summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnderson Bravalheri <andersonbravalheri@gmail.com>2021-12-25 00:27:42 +0000
committerAnderson Bravalheri <andersonbravalheri@gmail.com>2022-01-06 22:48:43 +0000
commit34e0fcbc8886b1940cfaeaf8c9de1b6f1cc199d7 (patch)
tree5fbd148fe59896e572be194cb7da091a7bb73fdb
parent332a0532bf3293cf7c3d0fbfbb4664a5a98b9ec0 (diff)
downloadpython-setuptools-git-34e0fcbc8886b1940cfaeaf8c9de1b6f1cc199d7.tar.gz
Remove dependency on pytest_virtualenv
Now that all tests use `jaraco.envs`, there is no need to depend on `pytest_virtualenv`.
-rw-r--r--setup.cfg1
-rw-r--r--tox.ini3
2 files changed, 1 insertions, 3 deletions
diff --git a/setup.cfg b/setup.cfg
index 9a14cc25..2f027faf 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -55,7 +55,6 @@ testing =
mock
flake8-2020
virtualenv>=13.0.0
- pytest-virtualenv>=1.2.7 # TODO: Update once man-group/pytest-plugins#188 is solved
wheel
paver
pip>=19.1 # For proper file:// URLs support.
diff --git a/tox.ini b/tox.ini
index f4e28133..07c310bc 100644
--- a/tox.ini
+++ b/tox.ini
@@ -7,8 +7,7 @@ toxworkdir={env:TOX_WORK_DIR:.tox}
[testenv]
deps =
- # TODO: remove after man-group/pytest-plugins#188 is solved
- pytest-virtualenv @ git+https://github.com/jaraco/pytest-plugins@distutils-deprecated#subdirectory=pytest-virtualenv
+ # Ideally all the dependencies should be set as "extras"
commands =
pytest {posargs}
usedevelop = True