Skip to content

Commit 6c05180

Browse files
authored
Merge branch 'master' into pipe_chaining
2 parents fab2b37 + cbf0313 commit 6c05180

File tree

1 file changed

+24
-4
lines changed

1 file changed

+24
-4
lines changed

.appveyor.yml

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,27 @@
1-
install:
2-
- python -m pip install tox
3-
41
build: off
52

3+
environment:
4+
PYTHONUNBUFFERED: 1
5+
MINICONDA: C:\\Miniconda3-x64
6+
matrix:
7+
# Disable Python 3.5 testing on AppVeyor for now until we fix issue with mock module install for python < 3.6
8+
# - PYTHON: "C:\\Python35"
9+
# TOX_ENV: "py35"
10+
11+
- PYTHON: "C:\\Python36"
12+
TOX_ENV: "py36"
13+
14+
- PYTHON: "C:\\Python37"
15+
TOX_ENV: "py37"
16+
17+
init:
18+
- "%PYTHON%/python -V"
19+
- mkdir C:\Users\appveyor\.conda
20+
- call %MINICONDA%\Scripts\activate.bat
21+
22+
install:
23+
- "%PYTHON%/Scripts/pip install -U --user pip"
24+
- "%PYTHON%/Scripts/pip install -U --user setuptools tox wheel"
25+
626
test_script:
7-
- python -m tox -e py35,py36,py37
27+
- "%PYTHON%/python -m tox -e %TOX_ENV%"

0 commit comments

Comments
 (0)