forked from spacetelescope/gwcs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
103 lines (79 loc) · 3.05 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
96
97
98
99
100
101
102
103
language: c
# 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
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.
- PYTHON_VERSION=3.6
- NUMPY_VERSION=stable
#- ASTROPY_VERSION=development
- MAIN_CMD='python setup.py'
- CONDA_DEPENDENCIES='scipy'
- ASDF_GIT='git+https://github.com/spacetelescope/asdf.git#egg=asdf'
#- ASTROPY_GIT='git+https://github.com/astropy/[email protected]'
- PIP_DEPENDENCIES="astropy pytest-astropy asdf"
- ASTROPY_USE_SYSTEM_PYTEST=1
- PYTEST_VERSION=3.6
matrix:
- SETUP_CMD='egg_info'
- SETUP_CMD='test'
- PYTHON_VERSION=3.6 SETUP_CMD='test'
- PYTHON_VERSION=3.7 SETUP_CMD='test'
matrix:
# Don't wait for allowed failures
fast_finish: true
include:
# Do a coverage test.
- python: 3.5
env: SETUP_CMD='test --coverage --open-files --remote-data'
# Check for sphinx doc build warnings - we do this first because it
# may run for a long time
- python: 3.6
env: SETUP_CMD='build_docs -w'
- python: 3.6
env: NUMPY_VERSION=1.15 SETUP_CMD="test"
- python: 3.5
env: NUMPY_VERSION=1.15 SETUP_CMD="test"
# Do a PEP8 test with flake8
- python: 3.6
env: MAIN_CMD='flake8 count --select=F, E101, E111, E112, E113, E401, E402, E711, E722 --max-line-length=110'
SETUP_CMD='gwcs"
- python: 3.5
env: MAIN_CMD='flake8 count --max-line-length=110' SETUP_CMD='gwcs'
- python: 3.6
env: NUMPY_VERSION=dev SETUP_CMD='test'
- python: 3.6
env: ASTROPY_VERSION=development SETUP_CMD='test'
- python: 3.6
env: ASTROPY_VERSION=development PIP_DEPENDENCIES="$ASDF_GIT" SETUP_CMD='test'
allow_failures:
- python: 3.5
env: MAIN_CMD='flake8 count --max-line-length=110' SETUP_CMD='gwcs'
- python: 3.6
env: NUMPY_VERSION=dev SETUP_CMD='test'
- python: 3.6
env: ASTROPY_VERSION=development SETUP_CMD='test'
- python: 3.6
env: ASTROPY_VERSION=development PIP_DEPENDENCIES="$ASDF_GIT" SETUP_CMD='test'
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 == *--coverage* ]]; then
coveralls --rcfile='gwcs/tests/coveragerc';
fi