forked from holoviz/datashader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
72 lines (68 loc) · 1.85 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# We deliberately don't use travis's language=python option because
# we install miniconda and use conda to get python. Additionally,
# Travis's auto-install of python doesn't work on osx images (see
# https://github.com/travis-ci/travis-ci/issues/4729).
language: generic
sudo: false
before_install:
- export PATH="$HOME/miniconda/bin:$PATH"
jobs:
include:
- install: scripts/ci/install_examples
script: scripts/ci/test_examples
os: linux
env:
- GROUP=examples
- PYTHON_VERSION=3.6
- install: scripts/ci/install_unit
script: scripts/ci/test_unit
os: linux
env:
- GROUP=unit
- PYTHON_VERSION=2.7
- install: scripts/ci/install_unit
script: scripts/ci/test_unit
os: linux
env:
- GROUP=unit
- PYTHON_VERSION=3.5
- install: scripts/ci/install_unit
script: scripts/ci/test_unit
os: linux
env:
- GROUP=unit
- PYTHON_VERSION=3.6
- install: scripts/ci/install_examples
script: scripts/ci/test_examples
os: osx
osx_image: xcode8.3
if: branch = master AND type != pull_request
env:
- GROUP=examples
- PYTHON_VERSION=3.6
- install: scripts/ci/install_unit
script: scripts/ci/test_unit
os: osx
osx_image: xcode8.3
if: branch = master AND type != pull_request
env:
- GROUP=unit
- PYTHON_VERSION=2.7
- install: scripts/ci/install_unit
script: scripts/ci/test_unit
os: osx
osx_image: xcode8.3
if: branch = master AND type != pull_request
env:
- GROUP=unit
- PYTHON_VERSION=3.5
- install: scripts/ci/install_unit
script: scripts/ci/test_unit
os: osx
osx_image: xcode8.3
if: branch = master AND type != pull_request
env:
- GROUP=unit
- PYTHON_VERSION=3.6
notifications:
email: false