From 0bdbd0aba6cbbd0cb2cb0cb8c5ca272b042f0167 Mon Sep 17 00:00:00 2001 From: Andrew Featherstone Date: Sun, 17 Dec 2017 21:50:06 +0000 Subject: Add AppVeyor configuration, based on .travi.yml's contents and http://buildbot.scons.org/. --- .appveyor.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .appveyor.yml diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 0000000..2ddc8ee --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,20 @@ +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 + +test_script: + - python runtest.py -a || if [[ $? == 2 ]]; then exit 0; else exit 1; fi \ No newline at end of file -- cgit v0.12