@@ -26,25 +26,25 @@ environment:
26
26
# this variable only influence pdf/svg tests, png tests are run on any platform
27
27
# only once, because it basically triples the testing times
28
28
# pick the one which seems to make the most problems
29
- TEST_ALL_IMAGES : " yes"
29
+ TEST_ALL : " yes"
30
30
CONDA_INSTALL_LOCN : " C:\\ Miniconda"
31
31
- TARGET_ARCH : " x64"
32
32
CONDA_PY : " 27"
33
33
CONDA_NPY : " 18"
34
34
PYTHON_VERSION : " 2.7"
35
- TEST_ALL_IMAGES : " no"
35
+ TEST_ALL : " no"
36
36
CONDA_INSTALL_LOCN : " C:\\ Miniconda-x64"
37
37
- TARGET_ARCH : " x64"
38
38
CONDA_PY : " 34"
39
39
CONDA_NPY : " 110"
40
40
PYTHON_VERSION : " 3.4"
41
- TEST_ALL_IMAGES : " no"
41
+ TEST_ALL : " no"
42
42
CONDA_INSTALL_LOCN : " C:\\ Miniconda3-x64"
43
43
- TARGET_ARCH : " x64"
44
44
CONDA_PY : " 35"
45
45
CONDA_NPY : " 110"
46
46
PYTHON_VERSION : " 3.5"
47
- TEST_ALL_IMAGES : " no"
47
+ TEST_ALL : " no"
48
48
CONDA_INSTALL_LOCN : " C:\\ Miniconda35-x64"
49
49
50
50
# We always use a 64-bit machine, but can build x86 distributions
@@ -116,23 +116,12 @@ test_script:
116
116
- cmd : ' "%DUMPBIN%" /DEPENDENTS lib\\matplotlib\\_png*.pyd | findstr png.*.dll && exit /b 1 || exit /b 0'
117
117
118
118
# this are optional dependencies so that we don't skip so many tests...
119
- # WORKAROUND: set miktex to the old version until I figured out whats wrong here...
120
- - cmd : conda install -q pillow miktex=2.9.5857
121
- # autoinstall latex packages (0=no, 1=autoinstall, 2=ask)
122
- # this adds this to the registry!
123
- - cmd : initexmf --set-config-value "[MPM]AutoInstall=1"
124
- # we need to put the real exe files into PATH as subprocess can't call bat files
125
- # this works for the "old" version of the miktex package, then next version should
126
- # not need it
127
- - set "PATH=%PATH%;%CONDA_PREFIX%\Library\miktex\miktex\bin"
128
- # missing packages on conda-forge for ffmpeg avconv mencoder imagemagick inkscape
129
- - cmd : conda install -q -c menpo ffmpeg # a repackaged version
119
+ - cmd : if x%TEST_ALL% == xyes; conda install -q pillow miktex inkscape
120
+ # missing packages on conda-forge for ffmpeg avconv mencoder imagemagick
121
+ - cmd : if x%TEST_ALL% == xyes; conda install -q -c menpo ffmpeg # a repackaged version
130
122
# This install sometimes failed randomly :-(
131
123
# - cmd: choco install imagemagick
132
- # only install inkscape during one test run as it increases the runtime of one
133
- # test run from 13 min -> 30 min
134
- - cmd : if x%TEST_ALL_IMAGES% == xyes; choco install inkscape
135
- - cmd : if x%TEST_ALL_IMAGES% == xyes; set "PATH=%PATH%;C:\Program Files\Inkscape\inkscape.com"
124
+
136
125
# Test import of tkagg backend
137
126
- python -c "import matplotlib as m; m.use('tkagg'); import matplotlib.pyplot as plt; print(plt.get_backend())"
138
127
# tests
0 commit comments