forked from AustinSanders/PDS-Pipelines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
79 lines (69 loc) · 2.24 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
language: generic
sudo: true
branches:
only:
- master
- testing
- qtesting
matrix:
include:
- os: linux
env: PYTHON_VERSION=3.6
- os: linux
env: PYTHON_VERSION=3.7
# Setup a postgresql instance w/postgis
services:
- postgresql
- redis-server
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
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then
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;';
fi
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
script:
- pytest -v pds_pipelines
after_success:
- coveralls
# Need to do the build in the root
- source deactivate
- conda install conda-build anaconda-client
- conda config --set anaconda_upload yes
- conda build --token $CONDA_UPLOAD_TOKEN --python $PYTHON_VERSION -c conda-forge -c menpo -c usgs-astrogeology conda
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/6cbe4b65fff6764ed80f
on_success: always
on_failure: always