Skip to content

Commit 9dc9e6e

Browse files
committed
Try a miniconda-based install on AppVeyor
1 parent 4957d99 commit 9dc9e6e

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

.appveyor.yml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,26 @@
11
build: off
22

33
environment:
4+
PYTHONUNBUFFERED: 1
5+
MINICONDA: C:\\Miniconda3-x64
46
matrix:
5-
- PYTHON: "C:\\Python35-x64"
6-
PYTHON_VERSION: "3.5.x"
7-
PYTHON_ARCH: "64"
8-
TOXENV: "py35"
7+
- PYTHON: "C:\\Python35"
8+
TOX_ENV: "py35"
99

10-
# - PYTHON: "C:\\Python36-x64"
11-
# PYTHON_VERSION: "3.6.x"
12-
# PYTHON_ARCH: "64"
13-
# TOXENV: "py36"
10+
- PYTHON: "C:\\Python36"
11+
TOX_ENV: "py36"
1412

15-
- PYTHON: "C:\\Python37-x64"
16-
PYTHON_VERSION: "3.7.x"
17-
PYTHON_ARCH: "64"
18-
TOXENV: "py37"
13+
- PYTHON: "C:\\Python37"
14+
TOX_ENV: "py37"
15+
16+
init:
17+
- "%PYTHON%/python -V"
18+
- mkdir C:\Users\appveyor\.conda
19+
- call %MINICONDA%\Scripts\activate.bat
1920

2021
install:
2122
- "%PYTHON%/Scripts/pip install -U --user pip"
2223
- "%PYTHON%/Scripts/pip install -U --user setuptools tox wheel"
2324

2425
test_script:
25-
- "%PYTHON%/python -m tox -e %TOXENV%"
26+
- "%PYTHON%/python -m tox -e %TOX_ENV%"

0 commit comments

Comments
 (0)