Revert "Update Makefile and travis configuration to run all (non-external) tests"

This reverts commit a453a78c7c.
This commit is contained in:
Kenneth Reitz
2012-05-02 02:38:20 -04:00
parent 6271046a27
commit 53d60cac4f
2 changed files with 7 additions and 5 deletions
+1 -2
View File
@@ -4,8 +4,7 @@ python:
- 2.7
- 3.2
env: HTTPBIN_URL=http://httpbin.org/
script: make ci
script: make simpleci
install:
- pip install nose
- pip install gevent
- pip install . --use-mirrors
+6 -3
View File
@@ -13,12 +13,15 @@ lazy:
simple:
nosetests tests/test_requests.py
ci:
find tests/ -name "*.py" ! -path "test_requests_ext.py" | xargs nosetests --with-xunit --xunit-file=junit-report.xml
server:
gunicorn httpbin:app --bind=0.0.0.0:7077 &
ci: init
nosetests tests/test_requests.py --with-xunit --xunit-file=junit-report.xml
simpleci:
nosetests tests/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