##// END OF EJS Templates
Cut more appveyor tests....
Cut more appveyor tests. The sequential nature of Appveyor still make it way slower than Travis. I'm thus proposing cutting 3.4 and 3.5 from the 64bit section. We thus still test on older and newer Pythons which have the most chance of catching bugs as 3.3 will fail if we use a non-existing yet feature and 3.6 fail on deprecated behaviors.

File last commit:

r23194:0c90d12b
r23265:8eaae94d
Show More
.travis.yml
26 lines | 676 B | text/x-yaml | YamlLexer
# http://travis-ci.org/#!/ipython/ipython
language: python
python:
- "nightly"
- 3.6
- 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" pip --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