Skip to content
This repository has been archived by the owner on Aug 18, 2018. It is now read-only.

Commit

Permalink
.travis changed
Browse files Browse the repository at this point in the history
  • Loading branch information
helloimcarmine committed Dec 11, 2015
1 parent 7e90d7a commit a960702
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ python:
- "2.7"
- "3.4"
- "3.5"
install: pip install coveralls unittest2
script: coverage run -m unittest discover neubot_runtime/
install:
- if [ $TRAVIS_PYTHON_VERSION == 2.6 ]; then
pip install unittest2;
else
pip install coveralls;
fi
script:
- if [ $TRAVIS_PYTHON_VERSION == 2.6 ]; then
python -m unittest2 discover neubot_runtime/;
else
coverage run -m unittest discover neubot_runtime/;
fi
after_success: coveralls

0 comments on commit a960702

Please sign in to comment.