.travis.yml
21 lines
| 700 B
| text/x-yaml
|
YamlLexer
Marc Abramowitz
|
r7633 | # http://travis-ci.org/#!/ipython/ipython | ||
language: python | ||||
python: | ||||
- 2.6 | ||||
- 2.7 | ||||
- 3.2 | ||||
Thomas Kluyver
|
r8987 | - 3.3 | ||
Marc Abramowitz
|
r7633 | before_install: | ||
- easy_install -q pyzmq | ||||
Jonathan Frederic
|
r11510 | - sudo apt-get install pandoc | ||
Jonathan Frederic
|
r11527 | - "if [$TRAVIS_PYTHON_VERSION == '3.2'* ]; then pip install -Iv https://pypi.python.org/packages/source/J/Jinja2/Jinja2-2.6.tar.gz; fi" | ||
- "if [! $TRAVIS_PYTHON_VERSION == '3.2'* ]; then pip install jinja2; fi" | ||||
Jonathan Frederic
|
r11522 | - pip install -Iv | ||
Jonathan Frederic
|
r11517 | - pip install markdown | ||
- pip install pygments | ||||
- pip install sphinx | ||||
Marc Abramowitz
|
r7633 | install: | ||
- python setup.py install -q | ||||
script: | ||||
- if [[ $TRAVIS_PYTHON_VERSION == '2.'* ]]; then iptest -w /tmp; fi | ||||
- if [[ $TRAVIS_PYTHON_VERSION == '3.'* ]]; then iptest3 -w /tmp; fi | ||||