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