##// END OF EJS Templates
Merge pull request #4217 from minrk/lazy-numpy...
Merge pull request #4217 from minrk/lazy-numpy avoid importing numpy at the module level

File last commit:

r12516:37a9a759
r12542:3afc5192 merge
Show More
.travis.yml
14 lines | 410 B | text/x-yaml | YamlLexer
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 # http://travis-ci.org/#!/ipython/ipython
language: python
python:
- 2.7
Thomas Kluyver
Tell Travis CI to test on Python 3.3 as well.
r8987 - 3.3
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 before_install:
- easy_install -q pyzmq
MinRK
install tornado in travis
r12516 - pip install jinja2 sphinx pygments tornado
Jonathan Frederic
Add pandoc to TravisCI config
r11510 - sudo apt-get install pandoc
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
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