blob: 4e32ee1a207ce4d785b98eb750432a5dd0929331 (
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
|
build: off
environment:
PYTHONUNBUFFERED: 1
MINICONDA: C:\\Miniconda3-x64
matrix:
- 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%"
|