I am trying to get the coverage of my tests using TOX and Travis CI. Unfortunately when creating the virtual envs, TOX install my package from PIP, thus not testing the coverage of the actual source code...
How can I prevnt that to happen.
I guess the easiest way to explain is to try:
Clone this: https://github.com/millerf/django-channels-jsonrpc
Create a venv
$>virtualenv venv/
And finally:
$> pip install tox
$> tox -ecoverage
The coverage does not include channels_jsonrpc/, as tox installed the package in his own venv...
how can I prevent the install of one package with tox?