-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
29 lines (25 loc) · 982 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
language: python
python: 3.6
os: linux
install:
- sudo apt-get update
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda create -n testenv python=3.6 pytest numpy=1.16 pandas=0.25 scikit-learn=0.21 pystan=2.19
- source activate testenv
script:
- pytest -vv dryadic/tests/test_mtypes.py
- pytest -vv dryadic/tests/test_mcombs.py
- pytest -vv dryadic/tests/test_mtrees.py
- python dryadic/tests/test_cohorts.py
- python dryadic/tests/test_pipes.py
- python dryadic/tests/test_kbtl.py
- python dryadic/tests/test_stan.py
- python dryadic/tests/test_txs.py
notifications:
email: