forked from dask/dask-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
46 lines (35 loc) · 1.79 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
45
46
language: python
python:
- "3.6"
env:
global:
# Doctr deploy key for dask/dask-examples
- secure: "KWjbk0SJb+om3KCgIp0n/z2cVUKZSew272NMkXtBcvtYE5VH/r7z551O4JP1sXOqus0SX/OnflFgcyT2JYdbdTy2zHWOFKjAQmhTW4uX4CuR7dvAA5GJydG0cDh2Vn4FmXspGe6LhVxIFc7ifNlWc3jcpjmmFTvYamZuM/fJHHu9QrF0HB9QbVfpjBsQoCS5BsKeFb0Z8lDcOH/kckOhMM7RQmLrVNWmwqJupT8acUuBkAOU781sLHXw+7MBDxjdCh774NXcZj7vKGQmawVBou90XpCb8K8JjTtr9QTvp2woQGQ4ttQH5qqZPtlpsxgrcUf9qw+DZomqJ/rdA5Zz06E8D0TTugWV0Cj/kLWzTeuIJkKlu6WoKt7OgIZM0+hxnF85eqp3pkbLkfflfpPOUXVv5K7LcMk7xOGtr5fQ+nyqsjMszT51zX6J3lYjJkd4W51Dg44WwqQ396JtDpv5PztUvU0/J1OBm5TOPWc2dvUOa4Yr5PnLyCpOt2YfThywXrWHI+sJa9gnR1vqSLY7EaGTcSehXzjLEG5rfchRudgD5vNOSy+F1LUoneKXUZXhE14KYQs1LaBPuiJHQrpZhZkhYdUpxA2QnR9LcdJI6YU4MckTCJw25YvAZFB7uCMaKcVGTRS1Wjii0+zKsfv7Y+7EmrMIKIIwkTvr/j5PWyg="
before_install:
- sudo apt-get update
- sudo apt-get install graphviz
install:
# Install conda
- 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"
- conda config --set always_yes yes --set changeps1 no
- conda install -q pip # create a record for conda, to avoid removing setuptools. See #12 for more.
- conda update -q conda
# Install dependencies
- conda env create -q -n test -f binder/environment.yml
- source activate test
# Install testing dependencies
- conda install -q pathlib nbconvert nbformat jupyter_client ipykernel
# Install documentation dependencies
- pip install nbsphinx dask-sphinx-theme sphinx
# Debug info
- conda list
script:
- set -e
- source activate test
- sphinx-build -M html . _build -v
- pip install doctr
- doctr deploy --built-docs _build/html .
notifications:
email: false