##// END OF EJS Templates
For upgrades of packages during testing....
For upgrades of packages during testing. Otherwise we will catch regression upstream too late. Drawback is that we might not catch usage of extremely recent API.

File last commit:

r22985:7bcdf105
r22985:7bcdf105
Show More
.travis.yml
25 lines | 662 B | text/x-yaml | YamlLexer
# http://travis-ci.org/#!/ipython/ipython
language: python
python:
- "nightly"
- 3.5
- 3.4
- 3.3
sudo: false
before_install:
- git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels
- 'if [[ $GROUP != js* ]]; then COVERAGE=""; fi'
install:
- pip install "setuptools>=18.5" --upgrade
- pip install -f travis-wheels/wheelhouse -e file://$PWD#egg=ipython[test] --upgrade
- pip install codecov --upgrade
script:
- cd /tmp && iptest --coverage xml && cd -
after_success:
- cp /tmp/ipy_coverage.xml ./
- cp /tmp/.coverage ./
- codecov
matrix:
allow_failures:
- python: nightly