##// END OF EJS Templates
recursive==False uses next(iter) for PY3 compatability; added tests to make sure it doesn't recurse
recursive==False uses next(iter) for PY3 compatability; added tests to make sure it doesn't recurse

File last commit:

r18566:f554a0fa
r19367:a1e161c1
Show More
.travis.yml
31 lines | 1.1 KiB | text/x-yaml | YamlLexer
# http://travis-ci.org/#!/ipython/ipython
language: python
python:
- 3.4
- 2.7
- 3.3
env:
- GROUP=js
- GROUP=
before_install:
# workaround for https://github.com/travis-ci/travis-cookbooks/issues/155
- sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm
# Pierre Carrier's PPA for PhantomJS and CasperJS
- sudo add-apt-repository -y ppa:pcarrier/ppa
# Needed to get recent version of pandoc in ubntu 12.04
- sudo add-apt-repository -y ppa:marutter/c2d4u
- sudo apt-get update
- sudo apt-get install pandoc casperjs libzmq3-dev
# pin tornado < 4 for js tests while phantom is on super old webkit
- git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels
- if [[ $GROUP == 'js' ]]; then pip install -f travis-wheels/wheelhouse 'tornado<4'; fi
- if [[ $GROUP == 'js' ]]; then python -m IPython.external.mathjax; fi
install:
- time pip install -f travis-wheels/wheelhouse file://$PWD#egg=ipython[all]
script:
- cd /tmp && iptest $GROUP
matrix:
exclude:
- python: 3.3
env: GROUP=js