##// END OF EJS Templates
Merge pull request #7406 from minrk/missing-js-services...
Brian E. Granger -
r19860:3cd0ddbd merge
parent child Browse files
Show More
@@ -3,13 +3,13 b' language: python'
3 python:
3 python:
4 - 3.4
4 - 3.4
5 - 2.7
5 - 2.7
6 - 3.3
7 env:
6 env:
7 - GROUP=
8 - GROUP=js/base
8 - GROUP=js/base
9 - GROUP=js/notebook
9 - GROUP=js/notebook
10 - GROUP=js/services
10 - GROUP=js/tree
11 - GROUP=js/tree
11 - GROUP=js/widgets
12 - GROUP=js/widgets
12 - GROUP=
13 before_install:
13 before_install:
14 # workaround for https://github.com/travis-ci/travis-cookbooks/issues/155
14 # workaround for https://github.com/travis-ci/travis-cookbooks/issues/155
15 - sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm
15 - sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm
@@ -21,22 +21,16 b' before_install:'
21 - sudo apt-get install pandoc casperjs libzmq3-dev
21 - sudo apt-get install pandoc casperjs libzmq3-dev
22 - git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels
22 - git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels
23 - 'if [[ $GROUP == js* ]]; then python -m IPython.external.mathjax; fi'
23 - 'if [[ $GROUP == js* ]]; then python -m IPython.external.mathjax; fi'
24 - 'if [[ $GROUP != js* ]]; then COVERAGE="--coverage xml"; fi'
24 install:
25 install:
25 - pip install coveralls
26 - pip install -f travis-wheels/wheelhouse file://$PWD#egg=ipython[all] coveralls
26 - pip install -f travis-wheels/wheelhouse file://$PWD#egg=ipython[all]
27 script:
27 script:
28 - cd /tmp && iptest $GROUP --coverage xml && cd -
28 - cd /tmp && iptest $GROUP $COVERAGE && cd -
29
29
30 matrix:
30 matrix:
31 exclude:
31 include:
32 - python: 3.3
33 env: GROUP=js/base
34 - python: 3.3
35 env: GROUP=js/notebook
36 - python: 3.3
37 env: GROUP=js/tree
38 - python: 3.3
32 - python: 3.3
39 env: GROUP=js/widgets
33 env: GROUP=
40
34
41 after_success:
35 after_success:
42 - cp /tmp/ipy_coverage.xml ./
36 - cp /tmp/ipy_coverage.xml ./
General Comments 0
You need to be logged in to leave comments. Login now