forked from PyProphet/pyprophet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
29 lines (29 loc) · 764 Bytes
/
.travis.yml
File metadata and controls
29 lines (29 loc) · 764 Bytes
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
sudo: required
dist: xenial
language: python
python:
- "3.6"
- "3.7"
- "3.8"
before_install:
- sudo apt-get update
install:
- pip install -U setuptools
- pip install -U pytest
- pip install -U pytest-regtest
- pip install -U Click
- pip install -U numpy
- pip install -U scipy
- pip install -U cython
- pip install -U pandas
- pip install -U scikit-learn
- pip install -U numexpr
- pip install -U statsmodels
- pip install -U matplotlib
- pip install -U networkx
- travis_retry python setup.py develop
script:
- if [[ $TRAVIS_PYTHON_VERSION == 3.6* ]]; then py.test tests/; fi
- if [[ $TRAVIS_PYTHON_VERSION == 3.7* ]]; then py.test tests/; fi
- if [[ $TRAVIS_PYTHON_VERSION == 3.8* ]]; then py.test tests/; fi
cache: pip