summaryrefslogtreecommitdiff
path: root/appveyor.yml
blob: 7bcc4c533f3fa8aa3416f006bb47d346b31da0c2 (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
environment:

  matrix:
    - python : 27
    - python : 27-x64
    - python : 33
    - python : 33-x64
    - python : 34
    - python : 34-x64
    - python : 35
    - python : 35-x64
    - { python: 27, PURE_PYTHON: 1 }
    - { python: 35, PURE_PYTHON: 1 }

install:
  - "SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%"
  - echo "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 > "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\amd64\vcvars64.bat"
  - pip install -e .

build: false

test_script:
  - python setup.py -q test -q

on_success:
  - echo Build succesful!