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
?