-
Notifications
You must be signed in to change notification settings - Fork 188
/
Copy path.travis.yml
45 lines (44 loc) · 1.11 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
language: julia
os:
- linux
julia:
- 0.7
- nightly
addons:
apt:
packages:
- python-numpy
- python3-numpy
env:
global:
- PYCALL_DEBUG_BUILD="yes"
matrix:
- PYTHON=Conda # not actually a python version, here to test Conda.jl's python
matrix:
include:
- &test-macos-py2
language: julia
os: osx
env: PYTHON=python
julia: 0.7
- &test-macos-py3
<<: *test-macos-py2
before_install:
- brew update
- brew upgrade python || echo "Ignoring errors..."
- brew unlink python
- brew link python
env: PYTHON=python3
- &test-macos-conda
<<: *test-macos-py2
env: PYTHON=Conda
- {<<: *test-macos-py2, julia: nightly}
- {<<: *test-macos-py3, julia: nightly}
- {<<: *test-macos-conda, julia: nightly}
# See:
# https://github.com/pytest-dev/pytest/blob/799b72cf6f35c4c4c73797303d3f78c12a795f77/.travis.yml#L38-L52
# https://github.com/pytest-dev/pytest/pull/3893
after_success:
- julia -e 'Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
notifications:
email: false