Skip to content

Commit

Permalink
Revert "Update Makefile and travis configuration to run all (non-exte…
Browse files Browse the repository at this point in the history
…rnal) tests"

This reverts commit a453a78.
  • Loading branch information
Kenneth Reitz committed May 2, 2012
1 parent 6271046 commit 53d60ca
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 53d60ca

Please sign in to comment.