##// END OF EJS Templates
Use -e flag to install on Travis
Thomas Kluyver -
Show More
@@ -1,38 +1,38 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 sudo: false
7 7 env:
8 8 global:
9 9 - PATH=$TRAVIS_BUILD_DIR/pandoc:$PATH
10 10 matrix:
11 11 - GROUP=
12 12 - GROUP=js/base
13 13 - GROUP=js/notebook
14 14 - GROUP=js/services
15 15 - GROUP=js/tree
16 16 - GROUP=js/widgets
17 17 before_install:
18 18 - 'if [[ $GROUP != js* ]]; then wget https://7de4dfdec62155b49b44-d726a73613a1989d29b147f20996e7c1.ssl.cf2.rackcdn.com/pandoc-1.12.3-linux-debian-x86_64.zip && unzip pandoc-1.12.3-linux-debian-x86_64.zip; fi'
19 19 - 'if [[ $GROUP == js* ]]; then wget https://7de4dfdec62155b49b44-d726a73613a1989d29b147f20996e7c1.ssl.cf2.rackcdn.com/mathjax.zip; fi'
20 20 - 'if [[ $GROUP == js* ]]; then npm install -g casperjs; fi'
21 21 - git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels
22 22 - 'if [[ $GROUP != js* ]]; then COVERAGE="--coverage xml"; fi'
23 23 install:
24 - pip install -f travis-wheels/wheelhouse file://$PWD#egg=ipython[all] coveralls
24 - pip install -f travis-wheels/wheelhouse -e file://$PWD#egg=ipython[all] coveralls
25 25 before_script:
26 26 - 'if [[ $GROUP == js* ]]; then python -m IPython.external.mathjax mathjax.zip; fi'
27 27 script:
28 28 - cd /tmp && iptest $GROUP $COVERAGE && cd -
29 29
30 30 matrix:
31 31 include:
32 32 - python: 3.3
33 33 env: GROUP=
34 34
35 35 after_success:
36 36 - cp /tmp/ipy_coverage.xml ./
37 37 - cp /tmp/.coverage ./
38 38 - coveralls
General Comments 0
You need to be logged in to leave comments. Login now