summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authoradamantike <mike@fmanganiello.com.ar>2016-01-25 23:30:47 -0300
committeradamantike <mike@fmanganiello.com.ar>2016-01-26 00:09:58 -0300
commit458e30b492b6d995b4e33f1c8d144266f05553c5 (patch)
tree0dd6fddeb7d03bc26efe566169d7cbae54009761 /.travis.yml
parentea145921e5fd0023455980bd6f812949256e9212 (diff)
downloadrsa-git-458e30b492b6d995b4e33f1c8d144266f05553c5.tar.gz
Added Coveralls integration
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 4846a97..5304305 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -17,6 +17,12 @@ env:
install:
- pip install -r requirements.txt
+ - pip install coveralls
script:
- tox
+
+after_success:
+ # Coveralls submission only for py35 environment, because of being the only
+ # one that executes doctest-modules testing, according to tox.ini.
+ - if [ ${TOXENV} = "py35" ]; then coveralls; fi