forked from fredms/dask-spark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
34 lines (26 loc) · 898 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
language: python
sudo: true
matrix:
fast_finish: true
include:
- python: "2.7"
- python: "3.5"
install:
# Note we disable progress bars to make Travis log loading much faster
# 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 -q conda
# Install dependencies
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION
- source activate test-environment
- conda install -q -c conda-forge -c quasiben pytest dask distributed spark
- pip install -q git+https://github.com/dask/{dask,distributed}.git --upgrade
# Install distributed
- pip install --no-deps -e .
script:
- py.test dask_spark --verbose
notifications:
email: false