-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
45 lines (37 loc) · 855 Bytes
/
.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
os:
- linux
language: python
python:
- "2.7"
- "3.5"
# - "3.6" # Failing tests for some reason, but we don't use this one anyway.
# Python for Mac is not yet officially supported by Travis.
# We test only 2.7 and 3.6 on macOS for now.
# matrix:
# include:
# - os: osx
# language: generic
# env: PYTHON=2.7.10
# - os: osx
# language: generic
# env: PYTHON=3.6.0
before_install:
- bash .ci/mac-os_before_install.sh
install:
- |
source .ci/set_pip_name.sh;
./install.bash
${pip} install . --upgrade;
before_script:
- |
# no X server in TravisCI
export MPLBACKEND=Agg;
evo_config set plot_backend Agg;
evo_config set plot_split False;
script:
- |
${pip} install pytest --upgrade;
pwd;
pytest -sv;
notifications:
slack: spark-lab-mit:gTc6ivvZ6ZoNtbxcrk1YzRsc