##// END OF EJS Templates
use `pip install .[all]` on travis...
Min RK -
Show More
@@ -1,31 +1,31 b''
1 1 # http://travis-ci.org/#!/ipython/ipython
2 2 language: python
3 3 python:
4 4 - 3.4
5 5 - 2.7
6 6 - 3.3
7 7 env:
8 8 - GROUP=js
9 9 - GROUP=
10 10 before_install:
11 11 # workaround for https://github.com/travis-ci/travis-cookbooks/issues/155
12 12 - sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm
13 13 # Pierre Carrier's PPA for PhantomJS and CasperJS
14 14 - time sudo add-apt-repository -y ppa:pcarrier/ppa
15 15 # Needed to get recent version of pandoc in ubntu 12.04
16 16 - time sudo add-apt-repository -y ppa:marutter/c2d4u
17 17 - time sudo apt-get update
18 18 - time sudo apt-get install pandoc casperjs libzmq3-dev
19 19 # pin tornado < 4 for js tests while phantom is on super old webkit
20 - if [[ $GROUP == 'js' ]]; then pip install 'tornado<4'; fi
21 - time pip install -f https://nipy.bic.berkeley.edu/wheelhouse/travis jinja2 sphinx pygments tornado requests!=2.4.2 mock pyzmq jsonschema jsonpointer mistune
20 - git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels
21 - if [[ $GROUP == 'js' ]]; then pip install -f travis-wheels/wheelhouse 'tornado<4'; fi
22 22 - if [[ $GROUP == 'js' ]]; then python -m IPython.external.mathjax; fi
23 23 install:
24 - time python setup.py install -q
24 - time pip install -f travis-wheels/wheelhouse file://$PWD#egg=ipython[all]
25 25 script:
26 26 - cd /tmp && iptest $GROUP
27 27
28 28 matrix:
29 29 exclude:
30 30 - python: 3.3
31 31 env: GROUP=js
General Comments 0
You need to be logged in to leave comments. Login now