File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -36,14 +36,14 @@ matrix:
36
36
# Python 3.4 build
37
37
- env : DISTRIB="conda" PYTHON_VERSION="3.4" INSTALL_MKL="false"
38
38
NUMPY_VERSION="1.10.4" SCIPY_VERSION="0.16.1" CYTHON_VERSION="0.25.2"
39
- COVERAGE=true
39
+ COVERAGE=true PILLOW=true
40
40
if : type != cron
41
41
# This environment tests the newest supported Anaconda release (5.0.0)
42
42
# It also runs tests requiring Pandas and PyAMG
43
43
- env : DISTRIB="conda" PYTHON_VERSION="3.6.2" INSTALL_MKL="true"
44
44
NUMPY_VERSION="1.13.1" SCIPY_VERSION="0.19.1" PANDAS_VERSION="0.20.3"
45
45
CYTHON_VERSION="0.26.1" PYAMG_VERSION="3.3.2" COVERAGE=true
46
- CHECK_PYTEST_SOFT_DEPENDENCY="true"
46
+ CHECK_PYTEST_SOFT_DEPENDENCY="true" PILLOW=true
47
47
if : type != cron
48
48
# flake8 linting on diff wrt common ancestor with upstream/master
49
49
- env : RUN_FLAKE8="true" SKIP_TESTS="true"
Original file line number Diff line number Diff line change @@ -55,6 +55,10 @@ if [[ "$DISTRIB" == "conda" ]]; then
55
55
TO_INSTALL=" $TO_INSTALL pyamg=$PYAMG_VERSION "
56
56
fi
57
57
58
+ if [[ " $PILLOW " == " true" ]]; then
59
+ TO_INSTALL=" $TO_INSTALL pillow"
60
+ fi
61
+
58
62
conda create -n testenv --yes $TO_INSTALL
59
63
source activate testenv
60
64
You can’t perform that action at this time.
0 commit comments