##// END OF EJS Templates
swallow stdout and report time for build/install step in test_pr...
swallow stdout and report time for build/install step in test_pr The vast majority of the output of test_pr is uninteresting stdout for install. It's also possible for system-site-packages envs to end up importing IPython *not* from the install we mean to test, so add a check for that.

File last commit:

r7928:16b88195
r8113:5d68b79f
Show More
.travis.yml
13 lines | 337 B | text/x-yaml | YamlLexer
# http://travis-ci.org/#!/ipython/ipython
language: python
python:
- 2.6
- 2.7
- 3.2
before_install:
- easy_install -q pyzmq
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