forked from StingraySoftware/stingray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
95 lines (74 loc) · 3.53 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
language: minimal
# Setting sudo to false opts in to Travis-CI container-based builds.
sudo: false
# The apt packages below are needed for sphinx builds. A full list of packages
# that can be included can be found here:
#
# https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-precise
addons:
apt:
packages:
- graphviz
- texlive-latex-extra
- dvipng
branches:
only:
- "master"
env:
global:
# The following versions are the 'default' for tests, unless
# overidden underneath. They are defined here in order to save having
# to repeat them for all configurations.
- ASTROPY_VERSION=stable
- NUMPY_VERSION=stable
- SETUP_CMD='test --coverage'
- PIP_DEPENDENCIES='emcee statsmodels corner'
- CONDA_DEPENDENCIES='scipy h5py matplotlib'
- SETUP_XVFB=True
matrix:
fast_finish: true
include:
- env: PYTHON_VERSION=3.7 SETUP_CMD='egg_info' SETUP_XVFB=False
- env: PYTHON_VERSION=3.8
- env: PYTHON_VERSION=3.6
PIP_DEPENDENCIES='git+https://[email protected]/nanograv/pint.git jplephem emcee statsmodels corner'
SETUP_CMD='test --remote-data --coverage'
- env: PYTHON_VERSION=3.7 CONDA_DEPENDENCIES='scipy matplotlib numba'
# Try without using corner
- env: PYTHON_VERSION=3.5 PIP_DEPENDENCIES='emcee statsmodels'
NUMPY_VERSION=1.14
- env: PYTHON_VERSION=3.6 PIP_DEPENDENCIES='nbsphinx sphinx-astropy' SETUP_CMD='build_docs -w'
# Try Astropy development version
- env: PYTHON_VERSION=3.7 ASTROPY_VERSION=development
allow_failures:
- env: PYTHON_VERSION=3.8
# Try Astropy development version
- env: PYTHON_VERSION=3.7 ASTROPY_VERSION=development
install:
# We now use the ci-helpers package to set up our testing environment.
# This is done by using Miniconda and then using conda and pip to install
# dependencies. Which dependencies are installed using conda and pip is
# determined by the CONDA_DEPDENDENCIES and PIP_DEPENDENCIES variables,
# which should be space-delimited lists of package names. See the README
# in https://github.com/astropy/ci-helpers for information about the full
# list of environment variables that can be used to customize your
# environment. In some cases, ci-helpers may not offer enough flexibility
# in how to install a package, in which case you can have additional
# commands in the install: section below.
- git clone --depth 1 git://github.com/astropy/ci-helpers.git
- source ci-helpers/travis/setup_conda.sh
# As described above, using ci-helpers, you should be able to set up an
# environment with dependencies installed using conda and pip, but in some
# cases this may not provide enough flexibility in how to install a
# specific dependency (and it will not be able to install non-Python
# dependencies). Therefore, you can also include commands below (as
# well as at the start of the install section or in the before_install
# section if they are needed before setting up conda) to install any
# other dependencies.
script:
- python setup.py $SETUP_CMD
after_success:
# If coveralls.io is set up for this package, uncomment the line
# below and replace "packagename" with the name of your package.
# The coveragerc file may be customized as needed for your package.
- if [[ $SETUP_CMD == *'--coverage'* ]]; then coveralls --rcfile='stingray/tests/coveragerc'; fi