summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorAnderson Bravalheri <andersonbravalheri@gmail.com>2021-11-14 17:14:34 +0000
committerAnderson Bravalheri <andersonbravalheri@gmail.com>2021-11-14 17:14:34 +0000
commit9f20fce31c8b8c923602679a51ee6780e81e2993 (patch)
treec6976df3b18d7784b5e3bf87d33f7852e57ffdbd /tox.ini
parentd212daa48743609fc439d8f5cbb2b4e8effbd55f (diff)
downloadpython-setuptools-git-9f20fce31c8b8c923602679a51ee6780e81e2993.tar.gz
Avoid using dependencies with URLs on setup.cfg
PyPI does not accept this kind of dependencies. An alternative is to overwrite the dependency in tox.ini
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini2
1 files changed, 2 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index ab993608..25b4eaf0 100644
--- a/tox.ini
+++ b/tox.ini
@@ -10,6 +10,8 @@ deps =
# workaround for sphinx-doc/sphinx#9562
# TODO: remove after Sphinx>4.1.2 is available.
sphinx@git+https://github.com/sphinx-doc/sphinx; python_version>="3.10"
+ # TODO: remove after man-group/pytest-plugins#188 is solved
+ pytest-virtualenv @ git+https://github.com/jaraco/pytest-plugins@distutils-deprecated#subdirectory=pytest-virtualenv
commands =
pytest {posargs}
usedevelop = True