1environment:
2
3  APPVEYOR: true
4
5  matrix:
6    - PYTHON: "C:\\Python36-x64"
7    - PYTHON: "C:\\Python27-x64"
8
9install:
10  # symlink python from a directory with a space
11  - "mklink /d \"C:\\Program Files\\Python\" %PYTHON%"
12  - "SET PYTHON=\"C:\\Program Files\\Python\""
13  - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
14
15build: off
16
17cache:
18  - '%LOCALAPPDATA%\pip\Cache'
19
20test_script:
21  - "python -m pip install tox tox-venv"
22  - "tox"
23
24version: '{build}'
25