Skip to content

Commit

Permalink
Simplify Travis build
Browse files Browse the repository at this point in the history
This should make the build faster since we don't have to wait until we
get our hands on five build machines. The log will be simpler on both
travis-ci.org and coveralls.io. If it becomes too simple, we'll revert
this later.
  • Loading branch information
mgeisler committed Jun 1, 2014
1 parent fb0437d commit 80f4448
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
language: python
env:
- ENV=py27 COVERAGE=on
- ENV=py33 COVERAGE=on
- ENV=py34 COVERAGE=on
- ENV=pep8
- ENV=pyflakes
- COVERAGE=on
install: pip install tox python-coveralls
script: tox -e $ENV
after_success: test -n "$COVERAGE" && coveralls
script: tox
after_success: coveralls

0 comments on commit 80f4448

Please sign in to comment.