forked from eyurtsev/FlowCytometryTools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
48 lines (37 loc) · 962 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
46
47
48
language: python
sudo: false
cache:
directories:
- ~/.cache/pip
env:
global:
- PIP_WHEEL_DIR=$HOME/.cache/pip/wheels
- PIP_FIND_LINKS=file://$HOME/.cache/pip/wheels
matrix:
include:
- python: 2.7
env: PANDAS=0.19.0 MATPLOTLIB=1.5.3
- python: 2.7
env: PANDAS=0.22.0 MATPLOTLIB=1.5.3
- python: 2.7
env: PANDAS=0.22.0 MATPLOTLIB=2.1.2
- python: 3.6
env: PANDAS=0.19.0 MATPLOTLIB=1.5.3
- python: 3.6
env: PANDAS=0.22.0 MATPLOTLIB=1.5.3
- python: 3.6
env: PANDAS=0.22.0 MATPLOTLIB=2.1.2
before_install:
- pip install -U pip
- pip install wheel
install:
- pip wheel numpy
- pip wheel -r requirements.txt
- pip wheel -r requirements.test.txt
- pip install numpy
- pip install -r requirements.txt
- pip install -r requirements.test.txt
script:
- py.test FlowCytometryTools/ --cov FlowCytometryTools -v --cov-report term-missing
after_success:
- coveralls