forked from ContextLab/supereeg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
30 lines (29 loc) · 782 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
language: python
sudo: false
python:
- '3.5'
- '3.6'
- '3.7'
- '3.8'
addons:
apt_packages:
- libbz2-dev
- libhdf5-serial-dev
- liblzo2-dev
install:
- 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 info -a
- conda create -q -n testenv python=$TRAVIS_PYTHON_VERSION pip pytest numpy pandas
scipy matplotlib seaborn scikit-learn numba scikit-image
- source activate testenv
- conda install pytables
- pip install Cython --install-option="--no-cython-compile"
- pip install .
script: pytest
notifications:
slack: context-lab:gLtt8NuYpyBW0ZkmwMJGtZut