diff options
Diffstat (limited to 'helm/tox.ini')
-rw-r--r-- | helm/tox.ini | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/helm/tox.ini b/helm/tox.ini new file mode 100644 index 0000000..14c340c --- /dev/null +++ b/helm/tox.ini @@ -0,0 +1,18 @@ +# content of: tox.ini , put in same dir as setup.py +[tox] +envlist=flake8,py27 + +[testenv:py27] +deps = + # this fixes issue with tox installing coverage --pre + coverage==3.7.1 + nose-cov + testfixtures + -rdev-requirements.txt +commands=nosetests --with-cov --cov-report term-missing --cov plugin plugin/tests + +[testenv:flake8] +deps = + flake8 + -rdev-requirements.txt +commands=flake8 plugin |