forked from astropy/ccdproc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
95 lines (74 loc) · 2.68 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: python
# Setting sudo to false opts in to Travis-CI container-based builds.
sudo: false
# The apt packages below are needed for sphinx builds, which can no longer
# be installed with sudo apt-get.
addons:
apt:
packages:
- graphviz
- texlive-latex-extra
- dvipng
python:
- 3.4
- 3.5
- 3.6
env:
global:
# The following versions are the 'default' for tests, unless
# overridden underneath. They are defined here in order to save having
# to repeat them for all configurations.
- NUMPY_VERSION=stable
- ASTROPY_VERSION=stable
- CONDA_DEPENDENCIES='scipy astroscrappy reproject scikit-image'
- PIP_DEPENDENCIES=''
- MAIN_CMD='python setup.py'
- SETUP_CMD='test'
- CONDA_CHANNELS='astropy-ci-extras astropy'
- ASTROPY_USE_SYSTEM_PYTEST=1
matrix:
- SETUP_CMD='egg_info'
matrix:
include:
# Try Astropy/NumPy development versions. This requires them to be
# compiled during setup which takes some time.
- python: 3.6
env: ASTROPY_VERSION=development
NUMPY_VERSION=dev
SETUP_CMD='test --coverage'
# Check for sphinx doc build warnings
- python: 3.6
env: SETUP_CMD='build_docs -w'
# Do coverage tests for both latest Python versions
- python: 3.6
env: ASTROPY_VERSION=3
SETUP_CMD='test --coverage'
# Check compatibility with the current astropy LTS release
- python: 3.6
env: ASTROPY_VERSION=2
SETUP_CMD='test --coverage'
# Try older numpy, python versions
- python: 3.4
env: NUMPY_VERSION=1.11
- python: 3.5
env: NUMPY_VERSION=1.12
- python: 3.6
env: NUMPY_VERSION=1.13
# Try numpy pre-release version. This runs only when a pre-release
# is available on pypi.
- python: 3.6
env: NUMPY_VERSION=prerelease
# pycodestyle test, see setup.cfg for tested pep8 warnings/errors
- python: 3.6
env: MAIN_CMD='pycodestyle ccdproc --count --show-source --show-pep8'
SETUP_CMD=''
install:
- git clone git://github.com/astropy/ci-helpers.git
- source ci-helpers/travis/setup_conda.sh
script:
- $MAIN_CMD $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 == 'test --coverage' ]]; then coveralls --rcfile='ccdproc/tests/coveragerc'; fi