-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
102 lines (98 loc) · 2.14 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# vim ft=yaml
sudo: false # To use travis container infrastructure
language: python
env:
global:
- REQUIREMENTS=requirements.txt
- SCRIPT=test_blas_packages.sh
- MPL_VERSION=1.5.3
# Comment out to disable pre-release versions
# - PRE="--pre"
matrix:
include:
- python: 2.7
env:
- SCRIPT=test_mpl.sh
- REQUIREMENTS=mpl-requirements.txt
- python: 2.7
dist: trusty
env:
- SCRIPT=test_mpl.sh
- REQUIREMENTS=mpl-requirements.txt
- python: 3.5
dist: trusty
env:
- SCRIPT=test_mpl.sh
- REQUIREMENTS=mpl-requirements.txt
- python: 3.4
env:
- SCRIPT=test_mpl.sh
- REQUIREMENTS=mpl-requirements.txt
- python: 3.5
env:
- SCRIPT=test_mpl.sh
- REQUIREMENTS=mpl-requirements.txt
# Run a narrow and wide unicode build on trusty
- python: 2.7
dist: trusty
- python: 3.5
dist: trusty
- python: 2.7
env:
- CORE=
- python: 2.7
env:
- CORE=prescott
- python: 2.7
env:
- CORE=dunnington
- python: 2.7
env:
- CORE=penryn
- python: 2.7
env:
- CORE=core2
- python: 2.7
env:
- CORE=nehalem
- python: 2.7
env:
- CORE=sandybridge
- python: 3.4
env:
- CORE=
- python: 3.5
env:
- CORE=
- python: 3.5
env:
- CORE=prescott
- python: 3.5
env:
- CORE=dunnington
- python: 3.5
env:
- CORE=penryn
- python: 3.5
env:
- CORE=core2
- python: 3.5
env:
- CORE=nehalem
- python: 3.5
env:
- CORE=sandybridge
before_install:
- virtualenv --python=python venv
- source venv/bin/activate
- python --version # just to check
- python -m pip install -U pip
- pip install -U wheel
install:
- pip install --timeout=60 $PRE -r $REQUIREMENTS
script:
- pip install nose
# Change into an innocuous directory and find tests from installation
- mkdir for_testing
- cd for_testing
- source ../$SCRIPT