diff --git a/Makefile b/Makefile index e4872da0..05203747 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,10 @@ test: nosetests test_requests.py --processes=30 ci: init - nosetests --processes=30 --with-nosexunit test_requests.py + nosetests test_requests.py --with-xunit --xunit-file=junit-report.xml + +stats: + pyflakes requests | awk -F\: '{printf "%s:%s: [E]%s\n", $1, $2, $3}' > violations.pyflakes.txt site: cd docs; make dirhtml diff --git a/reqs.txt b/reqs.txt index 27f614a8..43c7c061 100644 --- a/reqs.txt +++ b/reqs.txt @@ -1,5 +1,3 @@ nose -mock pyflakes -NoseXUnit omnijson \ No newline at end of file