##// END OF EJS Templates
Merge pull request #8976 from Carreau/codecov2...
Merge pull request #8976 from Carreau/codecov2 enable codecov

File last commit:

r21791:89ff2ac4
r21795:ee622b24 merge
Show More
.travis.yml
21 lines | 580 B | text/x-yaml | YamlLexer
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 # http://travis-ci.org/#!/ipython/ipython
language: python
python:
Matthias Bussonnier
Update travis to 3.5 (instead of 3.5.0.rc4)
r21775 - 3.5
MinRK
reorder travis so slowest groups start first
r16540 - 3.4
Min RK
remove downstream projects from travis
r21248 - 3.3
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 - 2.7
Min RK
expedite travis...
r19868 sudo: false
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 before_install:
Min RK
use `pip install .[all]` on travis...
r18565 - git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels
Min RK
remove downstream projects from travis
r21248 - 'if [[ $GROUP != js* ]]; then COVERAGE=""; fi'
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 install:
Min RK
remove downstream projects from travis
r21248 - pip install -f travis-wheels/wheelhouse -r requirements.txt -e file://$PWD#egg=ipython[test] coveralls
Matthias Bussonnier
enable codecov
r21791 - pip install codecov
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 script:
Min RK
remove downstream projects from travis
r21248 - cd /tmp && iptest --coverage xml && cd -
Matthias Bussonnier
enable test coverage on coveralls
r19539 after_success:
- cp /tmp/ipy_coverage.xml ./
- cp /tmp/.coverage ./
- coveralls
Matthias Bussonnier
enable codecov
r21791 - codecov