diff --git a/test_suite.sh b/test_suite.sh index bcea4c2c..86f8cd30 100755 --- a/test_suite.sh +++ b/test_suite.sh @@ -1,4 +1,4 @@ -nosetests test_requests.py --with-xunit --with-coverage +tox coverage xml rm -fr pylint.txt pylint -d W0312 -d W0212 -d E1101 -d E0202 -d W0102 -d E0102 -f parseable ./requests > pylint.txt || true diff --git a/tox.ini b/tox.ini new file mode 100644 index 00000000..9a7083fb --- /dev/null +++ b/tox.ini @@ -0,0 +1,4 @@ +[tox] +envlist = py24,py25,py26,py27 +[testenv] +commands=nosetests --with-xunit --xunit-file=nosetests.xml \ No newline at end of file