forked from dask/dask-glm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
30 lines (24 loc) · 819 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
env:
matrix:
- PYTHON=2.7 IPYTHON_KERNEL=python2
- PYTHON=3.5 IPYTHON_KERNEL=python3
install:
# Install conda
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda config --set always_yes yes --set changeps1 no
- conda update conda
# Install dependencies
- conda create -n test-environment -c conda-forge python=$PYTHON numpy flake8 pytest scipy multipledispatch cloudpickle numba dask mock scikit-learn jupyter
- source activate test-environment
- pip install git+https://github.com/dask/dask
# Install dask-glm
- pip install --no-deps -e .
script:
- py.test dask_glm
- flake8 dask_glm
notifications:
email: false