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