summaryrefslogtreecommitdiff
path: root/appveyor.yml
blob: 7fa81b8798cbcb71cae5f1741e7a1e7dab5e2f0a (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
environment:
  matrix:
    - TARGET: "Python 3.5"
      PYTHON: "C:\\Python35"
      PYTHON_VERSION: "3.5"
    - TARGET: "Python 3.6"
      PYTHON: "C:\\Python36"
      PYTHON_VERSION: "3.6"
    - TARGET: "Python 3.7"
      PYTHON: "C:\\Python37"
      PYTHON_VERSION: "3.7"
    - TARGET: "Python 3.8"
      PYTHON: "C:\\Python38"
      PYTHON_VERSION: "3.8"

install:
  - cmd: '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x86 /release'

build_script:
  - "%PYTHON%\\python.exe setup.py update"
  - "%PYTHON%\\python.exe setup.py build"

test_script:
  - "set PYTHONPATH=build\\lib.win32-%PYTHON_VERSION%"
  - "%PYTHON%\\python.exe run_tests.py"