.travis.yml
14 lines
| 421 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: | ||
- easy_install -q pyzmq | ||||
Thomas Kluyver
|
r13090 | - pip install jinja2 sphinx pygments tornado requests | ||
Jonathan Frederic
|
r11510 | - sudo apt-get install pandoc | ||
Marc Abramowitz
|
r7633 | install: | ||
- python setup.py install -q | ||||
script: | ||||
Thomas Kluyver
|
r12615 | - if [[ $TRAVIS_PYTHON_VERSION == '2.'* ]]; then cd /tmp; iptest; fi | ||
- if [[ $TRAVIS_PYTHON_VERSION == '3.'* ]]; then cd /tmp; iptest3; fi | ||||