.travis.yml
19 lines
| 703 B
| text/x-yaml
|
YamlLexer
Marc Abramowitz
|
r7633 | # http://travis-ci.org/#!/ipython/ipython | ||
language: python | ||||
python: | ||||
- 2.7 | ||||
Thomas Kluyver
|
r8987 | - 3.3 | ||
Marc Abramowitz
|
r7633 | before_install: | ||
Paul Ivanov
|
r13267 | # workaround for https://github.com/travis-ci/travis-cookbooks/issues/155 | ||
- sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm | ||||
Marc Abramowitz
|
r7633 | - easy_install -q pyzmq | ||
Thomas Kluyver
|
r13090 | - pip install jinja2 sphinx pygments tornado requests | ||
Paul Ivanov
|
r13273 | # Pierre Carrier's PPA for PhantomJS and CasperJS | ||
Paul Ivanov
|
r13274 | - sudo add-apt-repository -y ppa:pcarrier/ppa | ||
Paul Ivanov
|
r13273 | - sudo apt-get update | ||
- sudo apt-get install pandoc casperjs | ||||
Marc Abramowitz
|
r7633 | install: | ||
- python setup.py install -q | ||||
script: | ||||
Paul Ivanov
|
r13286 | - if [[ $TRAVIS_PYTHON_VERSION == '2.'* ]]; then cd /tmp; iptest js; fi | ||
- if [[ $TRAVIS_PYTHON_VERSION == '3.'* ]]; then cd /tmp; iptest3 js; fi | ||||