-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
53 lines (48 loc) · 1.03 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
os: linux
language: python
python:
- 2.7
- 3.5
- 3.6
- nightly
env:
- NP_VER="1.11.*"
- NP_VER="1.12.*"
matrix:
# add OSX jobs
include:
# latest Python 2.7.X
- language: generic
python: 2.7
os: osx
env: NP_VER="1.12.*"
before_install:
- virtualenv env -p python
- source env/bin/activate
- python --version
# latest Python 3.X
- language: generic
python: 2.7
os: osx
env: NP_VER="1.12.*"
before_install:
- brew install python3
- virtualenv env -p python3
- source env/bin/activate
- python --version
# allowed job failures that will not fail the entire build
allow_failures:
- python: nightly
before_install:
- python --version
install:
- pip install --upgrade pip
- pip install --upgrade wheel setuptools
- pip install --upgrade -r requirements/requirements-dev.txt
- pip install numpy==${NP_VER}
- pip list
script:
- make test
- make coverage
after_success:
- codeclimate-test-reporter