forked from kree/autocnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
80 lines (69 loc) · 2.15 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
70
71
72
73
74
75
76
77
78
79
80
language: generic
sudo: true
branches:
only:
- dev
- testing
matrix:
include:
- os: linux
env: PYTHON_VERSION=3.6
- os: linux
env: PYTHON_VERSION=3.7
# Setup a postgresql instance w/postgis
services:
- postgresql
addons:
postgresql: 9.6
apt:
packages:
- postgresql-9.6-postgis-2.4
before_install:
# Create the template database that is used to instantiate the test DB
- psql -c 'create database template_postgis;' -U postgres
- psql template_postgis -U postgres -c "create extension postgis"
- psql template_postgis -c "create extension postgis_topology"
- psql -d template_postgis -c "GRANT ALL ON geometry_columns TO PUBLIC;"
- psql -d template_postgis -c "GRANT ALL ON geography_columns TO PUBLIC;"
- psql -d template_postgis -c "GRANT ALL ON spatial_ref_sys TO PUBLIC;"
install:
# We do this conditionally because it saves us some downloading if the
# version is the same.
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
else
curl -o miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh;
fi
- 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 config --add channels conda-forge
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
# Create the env
- conda create -q -n test python=$PYTHON_VERSION
- source activate test
# Install dependencies
- conda env update -n test -f environment.yml
- export PROJ_LIB=$CONDA_PREFIX/share/proj
- pip install travis-sphinx
- conda install -c conda-forge nbsphinx
script:
- autocnet_config=config/test_config.yml pytest -v autocnet
- travis-sphinx build --source=docs --nowarn # The sphinx build script
after_success:
- coveralls
deploy:
provider: script
skip_cleanup: true
script: bash deploy.sh
on:
branch: dev
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/6cbe4b65fff6764ed80f
on_success: always
on_failure: always