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

environment:
  matrix:
    # Match the Python versions currently tested at http://buildbot.scons.org/#/,
    # but include 32 and 64-bit variants.
    - PYTHON: "C:\\Python27"
    - PYTHON: "C:\\Python27-x64"
    - PYTHON: "C:\\Python35"
    - PYTHON: "C:\\Python35-x64"
    - PYTHON: "C:\\Python36"
    - PYTHON: "C:\\Python36-x64"

install:
  - "set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
  - python --version
  - pip install lxml

build: off

test_script:
  - cmd: python runtest.py -a || if %errorlevel% == 2 then exit 0 else exit 1