diff --git a/Makefile b/Makefile index 12ab7fc3..e30949b1 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,10 @@ init: test: nosetests tests/integration_tests.py --processes=25 +ci: init + nosetests --processes=25 --source-folder=. --with-nosexunit tests/*.py + 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 87d35843..93bc3911 100644 --- a/reqs.txt +++ b/reqs.txt @@ -1,3 +1,4 @@ nose mock pyflakes +NoseXUnit