@@ -20,9 +20,9 @@ environment:
20
20
--cov-report= --cov=lib --log-level=DEBUG
21
21
22
22
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.
26
26
- PYTHON_VERSION : " 3.6"
27
27
CONDA_INSTALL_LOCN : " C:\\ Miniconda36-x64"
28
28
TEST_ALL : " no"
48
48
install :
49
49
- set PATH=%CONDA_INSTALL_LOCN%;%CONDA_INSTALL_LOCN%\scripts;%PATH%;
50
50
- set PYTHONUNBUFFERED=1
51
- # for msinttypes and newer stuff
52
51
- conda config --set always_yes true
53
52
- conda update --all
54
53
- conda config --set show_channel_urls yes
@@ -58,16 +57,13 @@ install:
58
57
- conda info -a
59
58
60
59
# 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
62
60
# if conda-forge gets a new pyqt, it might be nice to install it as well to have more backends
63
61
# https://github.com/conda-forge/conda-forge.github.io/issues/157#issuecomment-223536381
64
- #
65
62
- 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
67
64
pip setuptools numpy sphinx tornado
68
65
- activate test-environment
69
66
- echo %PYTHON_VERSION% %TARGET_ARCH%
70
- # pytest-cov>=2.3.1 due to https://github.com/pytest-dev/pytest-cov/issues/124
71
67
- pip install -r requirements/testing/travis_all.txt -r requirements/testing/travis36.txt
72
68
73
69
# Apply patch to `subprocess` on Python versions > 2 and < 3.6.3
0 commit comments