@@ -20,9 +20,9 @@ environment:
2020 --cov-report= --cov=lib --log-level=DEBUG
2121
2222 matrix :
23- # theoretically the CONDA_INSTALL_LOCN could be only two: one for 32bit,
24- # one for 64bit because we construct envs anyway. But using one for the
25- # right python version is hopefully making it fast due to package caching.
23+ # In theory we could use a single CONDA_INSTALL_LOCN because we construct
24+ # the envs anyway. But using one for the right python version hopefully
25+ # making things faster due to package caching.
2626 - PYTHON_VERSION : " 3.6"
2727 CONDA_INSTALL_LOCN : " C:\\ Miniconda36-x64"
2828 TEST_ALL : " no"
4848install :
4949 - set PATH=%CONDA_INSTALL_LOCN%;%CONDA_INSTALL_LOCN%\scripts;%PATH%;
5050 - set PYTHONUNBUFFERED=1
51- # for msinttypes and newer stuff
5251 - conda config --set always_yes true
5352 - conda update --all
5453 - conda config --set show_channel_urls yes
@@ -58,16 +57,13 @@ install:
5857 - conda info -a
5958
6059 # For building, use a new environment which only includes the requirements for mpl
61- # same things as the requirements in ci/conda_recipe/meta.yaml
6260 # if conda-forge gets a new pyqt, it might be nice to install it as well to have more backends
6361 # https://github.com/conda-forge/conda-forge.github.io/issues/157#issuecomment-223536381
64- #
6562 - conda create -q -n test-environment python=%PYTHON_VERSION%
66- msinttypes freetype=2.6 "libpng>=1.6.21,<1.7" zlib=1.2 tk=8.5
63+ freetype=2.6 "libpng>=1.6.21,<1.7" zlib=1.2 tk=8.5
6764 pip setuptools numpy sphinx tornado
6865 - activate test-environment
6966 - echo %PYTHON_VERSION% %TARGET_ARCH%
70- # pytest-cov>=2.3.1 due to https://github.com/pytest-dev/pytest-cov/issues/124
7167 - pip install -r requirements/testing/travis_all.txt -r requirements/testing/travis36.txt
7268
7369 # Apply patch to `subprocess` on Python versions > 2 and < 3.6.3
0 commit comments