diff options
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -8,6 +8,7 @@ deps = pretend pytest commands = + pip install -e vectors coverage run --source=cryptography/,tests/ -m pytest --capture=no --strict {posargs} coverage report -m @@ -34,7 +35,9 @@ commands = # Temporarily disable coverage on pypy because of performance problems with # coverage.py on pypy. [testenv:pypy] -commands = py.test --capture=no --strict {posargs} +commands = + pip install -e vectors + py.test --capture=no --strict {posargs} [testenv:pep8] deps = |