forked from holoviz/geoviews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
69 lines (64 loc) · 2.46 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# At some point, should probably change to generic (since using conda)
language: python
sudo: false
stages:
- test
- doc
jobs:
include:
- &default
stage: test
python: "2.7"
before_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"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
#########################
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION
- source activate test-environment
install:
- conda install -c conda-forge nose numpy matplotlib bokeh pandas scipy jupyter ipython param flake8 mock filelock iris cartopy xarray geopandas numpy --quiet
- pip install coveralls
- pip install git+https://github.com/ioam/holoviews.git
- python setup.py install
script:
- nosetests --with-doctest --with-coverage --cover-package=geoviews
- flake8 --ignore=E,W . --exclude=./doc
- <<: *default
python: "3.6"
after_success: coveralls
- <<: *default
stage: doc
python: "3.6"
script:
# TODO: can't remember why I did this twice
- python -c "import geoviews as gv; gv.sample_data('notebooks/user_guide/sample-data')"
- python -c "import geoviews as gv; gv.sample_data('doc/sample-data')"
- conda install -c conda-forge sphinx beautifulsoup4 graphviz
- pip install nbsite
- pip install sphinx_ioam_theme
# TODO: should make this content available too rather than deleting it!
- rm notebooks/*.ipynb
- cd doc
- nbsite_nbpagebuild.py ioam geoviews ../notebooks .
- sphinx-build -b html . ./_build/html
- nbsite_fix_links.py _build/html
- nbsite_cleandisthtml.py ./_build/html take_a_chance
- cp -r ../notebooks/user_guide/assets _build/html/user_guide/
- cp -r ../notebooks/user_guide/sample-data _build/html/user_guide/
- touch ./_build/html/.nojekyll
- cd ..
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
local_dir: ./doc/_build/html
on:
tags: true