##// END OF EJS Templates
add osx on 3.6 and 3.7 to travis, use addons.apt:packages for graphviz
Nicholas Bollweg -
Show More
@@ -1,22 +1,38 b''
1 # http://travis-ci.org/#!/ipython/ipython
1 # http://travis-ci.org/#!/ipython/ipython
2 language: python
2 language: python
3
4 os:
5 - linux
6 - osx
7
8 addons:
9 apt:packages:
10 - graphviz
11
3 python:
12 python:
4 - 3.6
13 - 3.6
5 - 3.5
14 - 3.5
15
6 sudo: false
16 sudo: false
17
7 env:
18 env:
8 global:
19 global:
9 - PATH=$TRAVIS_BUILD_DIR/pandoc:$PATH
20 - PATH=$TRAVIS_BUILD_DIR/pandoc:$PATH
21
10 group: edge
22 group: edge
23
11 before_install:
24 before_install:
12 - 'if [[ $GROUP != js* ]]; then COVERAGE=""; fi'
25 - 'if [[ $GROUP != js* ]]; then COVERAGE=""; fi'
26 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
27 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install graphviz; fi
28
13 install:
29 install:
14 - pip install pip --upgrade
30 - pip install pip --upgrade
15 - pip install setuptools --upgrade
31 - pip install setuptools --upgrade
16 - pip install -e file://$PWD#egg=ipython[test] --upgrade
32 - pip install -e file://$PWD#egg=ipython[test] --upgrade
17 - pip install trio curio
33 - pip install trio curio
18 - pip install codecov check-manifest --upgrade
34 - pip install codecov check-manifest --upgrade
19 - sudo apt-get install graphviz
35
20 script:
36 script:
21 - check-manifest
37 - check-manifest
22 - |
38 - |
@@ -39,10 +55,10 b' after_success:'
39
55
40 matrix:
56 matrix:
41 include:
57 include:
42 - { python: "3.6-dev", dist: xenial, sudo: true }
58 - { python: "3.6-dev", dist: xenial, sudo: true, os: linux }
43 - { python: "3.7", dist: xenial, sudo: true }
59 - { python: "3.7", dist: xenial, sudo: true, os: linux }
44 - { python: "3.7-dev", dist: xenial, sudo: true }
60 - { python: "3.7-dev", dist: xenial, sudo: true, os: linux }
45 - { python: "nightly", dist: xenial, sudo: true }
61 - { python: "nightly", dist: xenial, sudo: true, os: linux }
46 allow_failures:
62 allow_failures:
47 - python: nightly
63 - python: nightly
48
64
@@ -63,3 +79,4 b' deploy:'
63 all_branches: true # Backports are released from e.g. 5.x branch
79 all_branches: true # Backports are released from e.g. 5.x branch
64 tags: true
80 tags: true
65 python: 3.6 # Any version should work, but we only need one
81 python: 3.6 # Any version should work, but we only need one
82 condition: $TRAVIS_OS_NAME = "linux"
General Comments 0
You need to be logged in to leave comments. Login now