forked from python-streamz/streamz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
38 lines (28 loc) · 798 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
35
36
37
38
sudo: required
services:
- docker
language: python
matrix:
include:
- python: 3.6
env:
- STREAMZ_LAUNCH_KAFKA=true
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 env create --name test-streamz --file ./conda/environments/streamz_dev.yml
- source activate test-streamz
- pip install git+https://github.com/dask/distributed.git --upgrade --no-deps
- python setup.py install
script:
- coverage run run_tests.py --runslow
- flake8 streamz
after_success:
- codecov
notifications:
email: false