-
Notifications
You must be signed in to change notification settings - Fork 7
/
.travis.yml
44 lines (35 loc) · 1.6 KB
/
.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
39
40
41
42
43
44
sudo: required
services:
- docker
language: python
python:
- 3.6
env:
global:
# Doctr deploy key for xpdAcq/rapidz
- secure: "r+krxcUeVzCJD3at6t4KaDrmGLlRmgcdpLzJ3V2N76fVGYXaK83Fu66weVvq8gVAqvJop+E3L1pZ8u13GL7Tw4kwYOc7nImIPDQ7KJDyX21pR4Ow4N35P9E6Er++TEJH7XKKhQCeNVdeuqOeMgF8cVuGwPc2M5x6QWZfyqY25hR9gudre1ewlXNOVvZ7kbq2vOMs2K8B6K01KDdgu+GhKY863xnChI5njqwqzsb/cGKhuXGy/Um8Tmww7cMJic2gIoo2YNyIIOOEYKbXtBolJhnrb5IjU3gfF1YtmiEkyGmwrHyN5kWDfaT0JO5uvhnw2YSLWoSxHcBGIoYjJt03hGoKv2jwWZy1ojS43ERi+CGfbEO91XBdhGfhImB5pZ++4Tn56AMunnXRFq3VX0rJeF9tE85xuBc6jX8JUCTtSMw8wR7mLTKXSS39cp63PWqXFAoCZKRdylt4D4U5ex1qwehx8fz1iHEGvb0cia9UzogJA563WBMVkG83o2HUt54qBKfO+0K/U7Qh6ZOb4KovdCPnX2OtUcqctp0h3EUpLTzghQewSQK7zG/dIH2eaHO6c6l9X3b3ao7m2q64sQ7aqiPrALSPEc0N0XYHBSh47aMxt0Qht54uJuyv5syM/FxYapY/jap1koINVz0Fix3PAKs32AtVSpOdJpwwAt7/RYc="
matrix:
- 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 create -n test-rapidz python=$TRAVIS_PYTHON_VERSION
- source activate test-rapidz
- conda install -n test-rapidz --file requirements-dev.txt -c conda-forge -c bokeh
- python setup.py install
script:
- coverage run run_tests.py --runslow
after_success:
- codecov
- set -e
- cd docs
- make html
- cd ..
- doctr deploy . --built-docs ./docs/build/html
notifications:
email: true