blob: 14c340c7e440873cc3132c42cb1f3fd51e8405ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
|