summaryrefslogtreecommitdiff
path: root/appveyor.yml
blob: 3d55a92bd5fb78870f5bffaa8d2c20e87eaf66b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
environment:

  APPVEYOR: true

  matrix:
    - PYTHON: "C:\\Python36-x64"
    - PYTHON: "C:\\Python27-x64"

install:
  # symlink python from a directory with a space
  - "mklink /d \"C:\\Program Files\\Python\" %PYTHON%"
  - "SET PYTHON=\"C:\\Program Files\\Python\""
  - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"

build: off

test_script:
  - "python -m pip install tox tox-venv"
  - "tox"

version: '{build}'