forked from scipy/scipy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
277 lines (264 loc) · 9.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
# After changing this file, check it on:
# http://lint.travis-ci.org/
language: python
addons:
apt:
packages: &common_packages
- libatlas-base-dev
- liblapack-dev
- gfortran
- libgmp-dev
- libmpfr-dev
- libsuitesparse-dev
- ccache
- swig
- libmpc-dev
env:
global:
# Wheelhouse for pre-release wheels
- PRE_WHEELS="https://pypi.anaconda.org/scipy-wheels-nightly/simple"
# Using a single thread can actually speed up some computations on Travis
- OPENBLAS_NUM_THREADS=1
- OTHERSPEC=""
matrix:
include:
- python: 3.6
if: type = pull_request
env:
- PYFLAKES=1
- PEP8=1
- NUMPYSPEC="--upgrade numpy"
before_install:
- pip install pycodestyle==2.5.0
- pip install pyflakes==2.1.1
script:
# TODO: remove "ignore[import]" filter below when moving to pyflakes==2.1.2 or above
- PYFLAKES_NODOCTEST=1 pyflakes scipy benchmarks/benchmarks 2>&1 | grep -E -v 'unable to detect undefined names|assigned to but never used|imported but unused|redefinition of unused|may be undefined, or defined from star imports|syntax error in type comment .ignore.import.' > test.out; cat test.out; test \! -s test.out
- pycodestyle scipy benchmarks/benchmarks
- tools/lint_diff.py
- |
grep -rlIP '[^\x00-\x7F]' scipy | grep '\.pyx\?' | sort > unicode.out; grep -rlI '# -\*- coding: \(utf-8\|latin-1\) -\*-' scipy | grep '\.pyx\?' | sort > coding.out; comm -23 unicode.out coding.out > test_code.out; cat test_code.out; test \! -s test_code.out
- python: 3.7
if: type = pull_request
arch: arm64
dist: bionic
env:
- TESTMODE=fast
- COVERAGE=
- USE_WHEEL=1
- PIP_NO_CACHE_DIR=off
- NUMPYSPEC="numpy"
- python: 3.7
if: type = pull_request
env:
- TESTMODE=fast
- COVERAGE=
- NUMPYSPEC="--pre --upgrade --timeout=60 -i $PRE_WHEELS numpy"
- OTHERSPEC="--pre --upgrade --timeout=60"
# Need a test with most recent Python version where we build from an
# sdist (uses pip build isolation), to check that the version we
# specify in pyproject.toml (will be older than --pre --upgrade) works
- USE_SDIST=1
- python: 3.7
if: type = pull_request
env:
- TESTMODE=full
- COVERAGE="--coverage --gcov"
- NUMPYSPEC="numpy==1.15.4"
# Test SciPy with the debug version of Python.
# However travis only specifies regular or development builds of Python
# so we must install python3.6-dbg using apt.
- language: generic
if: type = pull_request
dist: bionic
env:
- USE_DEBUG=python3.7-dbg
- TESTMODE=fast
- NUMPYSPEC="--upgrade numpy"
addons:
apt:
packages:
- *common_packages
- python3.7-dbg
- python3.7-dev
- python: 3.8
if: type = pull_request
env:
- TESTMODE=full
- NUMPYSPEC="--pre --upgrade --timeout=60 -i $PRE_WHEELS numpy"
- OTHERSPEC="--pre --upgrade --timeout=60"
- NPY_USE_BLAS_ILP64=1
- python: 3.6
if: type = pull_request
env:
- TESTMODE=fast
- COVERAGE=
- USE_WHEEL=1
- REFGUIDE_CHECK=1
- NUMPYSPEC="--upgrade numpy"
- ASV_CHECK=1
- python: 3.6
if: type = pull_request
env:
- TESTMODE=fast
- COVERAGE=
- NUMPYSPEC="numpy==1.17.4"
- USE_SDIST=1
- python: 3.6
if: type = pull_request
env:
- TESTMODE=fast
- COVERAGE=
- USE_WHEEL=1
- NUMPYSPEC="numpy==1.14.6"
# The following is needed for optimized "-OO" test run but since we use
# pytest-xdist plugin for load scheduling its workers don't pick up the
# flag. This environment variable starts all Py instances in -OO mode.
- PYTHONOPTIMIZE=2
- python: 3.6
if: type = pull_request
os: linux
arch: ppc64le
env:
- TESTMODE=fast
- COVERAGE=
- NUMPYSPEC="--upgrade numpy --no-cache-dir"
cache:
directories:
- $HOME/.ccache
- $HOME/.cache/pip
- $HOME/Library/Caches/pip
before_install:
- echo $TRAVIS_OS_NAME
- |
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
free -m
export PATH=/usr/lib/ccache:$PATH
fi
- |
if [[ "$NPY_USE_BLAS_ILP64" == "1" ]]; then
target=$(python tools/openblas_support.py)
echo "[openblas64_]" > site.cfg
echo "library_dirs = $target/lib" >> site.cfg
echo "include_dirs = $target/include" >> site.cfg
echo "runtime_library_dirs = $target/lib" >> site.cfg
fi
- export CCACHE_COMPRESS=1
- python --version # just to check
- export NPY_NUM_BUILD_JOBS=2
- uname -a
- df -h
- ulimit -a
- mkdir builds
- cd builds
- |
if [ -n "${USE_DEBUG}" ]; then
# Work in our own virtualenv to isolate from travis-ci packages.
virtualenv --python=$USE_DEBUG venv
source venv/bin/activate
fi
- python -V -V
- python -c 'import sys; print("Python debug build:", hasattr(sys, "gettotalrefcount"))'
# arm64 build uses conda (there aren't any arm64 wheels on PyPI, need
# Miniforge / conda-forge), so skip arm64 here
- |
if [[ "$TRAVIS_CPU_ARCH" != "arm64" ]]; then
travis_retry pip install --upgrade pip setuptools wheel $OTHERSPEC cython pytest pytest-xdist mpmath argparse Pillow codecov gmpy2 pybind11
travis_retry pip install --upgrade $NUMPYSPEC
fi
- |
if [ -n "${USE_DEBUG}" ]; then
# see gh-10676; need to pin pytest version with debug
# Python 3.6
travis_retry pip install pytest
fi
- |
if [ -z "${USE_DEBUG}" -a "${TRAVIS_CPU_ARCH}" == "amd64" -a "${TRAVIS_PYTHON_VERSION}" != "3.8" ]; then
travis_retry pip install numba==0.49.1
travis_retry pip install --only-binary=:all: sparse
fi
- |
if [ "${TESTMODE}" == "full" ]; then
travis_retry pip install pytest-cov coverage matplotlib scikit-umfpack scikit-sparse
fi
- |
if [ "${REFGUIDE_CHECK}" == "1" ]; then
travis_retry pip install matplotlib Sphinx==1.7.2
fi
- |
if [ "${ASV_CHECK}" == "1" ]; then
travis_retry pip install "asv>=0.4.1"
fi
- |
if [ "${TRAVIS_CPU_ARCH}" != "arm64" ]; then
pip uninstall -y nose
fi
- ccache -s
- cd ..
- set -o pipefail
- if [[ "${TRAVIS_CPU_ARCH}" == "arm64" ]]; then
wget -q "https://github.com/conda-forge/miniforge/releases/download/4.8.2-1/Miniforge3-4.8.2-1-Linux-aarch64.sh" -O miniconda.sh;
chmod +x miniconda.sh;
./miniconda.sh -b -p $HOME/miniconda3;
export PATH=$HOME/miniconda3/bin:$PATH;
conda config --set always_yes yes --set auto_update_conda false;
conda install pip conda;
conda update -n base conda;
conda info -a;
conda install pytest pytest-xdist $NUMPYSPEC mpmath gmpy2 Cython pybind11;
fi
script:
- python -c 'import numpy as np; print("relaxed strides checking:", np.ones((10,1),order="C").flags.f_contiguous)'
# Make sure that relaxed strides checking is actually in effect; otherwise fail loudly
- if [ "$NPY_RELAXED_STRIDES_CHECKING" == "1" ]; then python -c'import numpy as np; assert np.ones((10,1),order="C").flags.f_contiguous'; fi
# Test that mpmath actually uses gmpy2
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then python -c 'import mpmath.libmp; assert mpmath.libmp.BACKEND == "gmpy"'; fi
- |
if [ "${USE_WHEEL}" == "1" ]; then
# Run setup.py build before pip wheel, to build in current directory
# and make more efficient use of ccache
echo "setup.py build"
python tools/suppress_output.py python setup.py build
echo "pip wheel"
python tools/suppress_output.py pip wheel --no-build-isolation .
pip install --no-cache-dir scipy*.whl
USE_WHEEL_BUILD="--no-build"
elif [ "${USE_SDIST}" == "1" ]; then
echo "setup.py sdist"
python tools/suppress_output.py python setup.py sdist
# Move out of source directory to avoid finding local scipy
cd dist
echo "pip install"
# Note: uses build isolation, which is what pip does with sdists by default
# Note: don't use a fixed build dir (which would help for ccache), because
# --build is partially broken and the workaround in commit b4617dd764
# messes with build isolation.
pip install $PWD/scipy* -v
cd ..
USE_WHEEL_BUILD="--no-build"
fi
- export SCIPY_AVAILABLE_MEM=3G
- python -u runtests.py -g -m $TESTMODE $COVERAGE $USE_WHEEL_BUILD -- -rfEX --durations=10 -n 3 2>&1 | tee runtests.log
- tools/validate_runtests_log.py $TESTMODE < runtests.log
- if [ "${REFGUIDE_CHECK}" == "1" ]; then python runtests.py -g --refguide-check; fi
- if [ "${ASV_CHECK}" == "1" ]; then (cd benchmarks && python -masv check -E existing); fi
# Check dynamic symbol hiding works on Linux
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./tools/check_pyext_symbol_hiding.sh build; fi
after_script:
- ccache -s
# Upload coverage information
- |
if [ -n "${COVERAGE}" ]; then
RUN_DIR=`echo build/testenv/lib/python*/site-packages`
# Produce gcov output for codecov to find
find build -name '*.gcno' -type f -exec gcov -pb {} +
mv *.gcov "$RUN_DIR/"
# Run codecov
pushd "$RUN_DIR"
codecov -X gcov
popd
fi
notifications:
# Perhaps we should have status emails sent to the mailing list, but
# let's wait to see what people think before turning that on.
email: false