diff options
author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2021-12-25 00:27:42 +0000 |
---|---|---|
committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-01-06 22:48:43 +0000 |
commit | 34e0fcbc8886b1940cfaeaf8c9de1b6f1cc199d7 (patch) | |
tree | 5fbd148fe59896e572be194cb7da091a7bb73fdb | |
parent | 332a0532bf3293cf7c3d0fbfbb4664a5a98b9ec0 (diff) | |
download | python-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.cfg | 1 | ||||
-rw-r--r-- | tox.ini | 3 |
2 files changed, 1 insertions, 3 deletions
@@ -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. @@ -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 |