When I run python setup.py test
the dependencies listed in tests_require
in setup.py are downloaded to the current directory. When I run python setup.py install
, the dependencies listed in requires
are instead installed to site-packages
.
How can I have those tests_require
dependencies instead installed in site-packages
?
tests_require
is deprecated since 41.5.0 (October 2019). We are now at 50.3.0. – Whiteningextras_require={'test': ['pytest']}
in setup.py I think. – Dehnel