diff options
Diffstat (limited to 'pgaas/tox.ini')
-rw-r--r-- | pgaas/tox.ini | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/pgaas/tox.ini b/pgaas/tox.ini index 28f1f3f..76daae0 100644 --- a/pgaas/tox.ini +++ b/pgaas/tox.ini @@ -20,9 +20,13 @@ envlist = py27 [testenv] deps= - pytest - cloudify==3.4 requests + cloudify==3.4 + pytest coverage pytest-cov -commands=pytest --junitxml xunit-results.xml --cov {envsitepackagesdir}/pgaas --cov-report xml --cov-report html +setenv= + PYTHONPATH={toxinidir} +commands= + pytest --junitxml xunit-results.xml --cov pgaas --cov-report xml + coverage xml |