Skip to content

Commit

Permalink
Move this mess into a separate file
Browse files Browse the repository at this point in the history
  • Loading branch information
myint committed Apr 14, 2013
1 parent 7cfc2eb commit d4ea9ed
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
8 changes: 1 addition & 7 deletions .travis.yml
Expand Up @@ -27,10 +27,4 @@ script:

after_success:
# pypy is too slow.
- if [ "$TRAVIS_PYTHON_VERSION" != "pypy" ]
then
pip install --quiet coverage &&
make coverage &&
pip install --quiet coveralls &&
coveralls;
fi
- if [ "$TRAVIS_PYTHON_VERSION" != "pypy" ]; then ./coveralls.bash; fi
8 changes: 8 additions & 0 deletions coveralls.bash
@@ -0,0 +1,8 @@
#!/bin/bash -ex
#
# Run coverage tests and send results to Coveralls.

pip install --quiet coverage
make coverage
pip install --quiet coveralls
coveralls

0 comments on commit d4ea9ed

Please sign in to comment.