forked from NeuralEnsemble/python-neo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
38 lines (36 loc) · 911 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
language: python
dist: xenial
sudo: false
matrix:
include:
- python: "3.6"
env: NUMPY_VERSION="1.14.6"
- python: "3.6"
env: NUMPY_VERSION="1.18.3"
- python: "3.7"
env: NUMPY_VERSION="1.14.6"
- python: "3.7"
env: NUMPY_VERSION="1.19.2"
- python: "3.8"
env: NUMPY_VERSION="1.14.6"
- python: "3.8"
env: NUMPY_VERSION="1.15.4"
- python: "3.8"
env: NUMPY_VERSION="1.16.6"
- python: "3.8"
env: NUMPY_VERSION="1.17.5"
- python: "3.8"
env: NUMPY_VERSION="1.18.5"
- python: "3.8"
env: NUMPY_VERSION="1.19.2"
# command to install dependencies
before_install:
- pip install "numpy==$NUMPY_VERSION"
install:
- pip install -r requirements.txt
- pip install coveralls
- pip install .
- pip install pillow
# command to run tests, e.g. python setup.py test
script:
nosetests --with-coverage --cover-package=neo