From 767736521c166054fe3dec869c5401a4fff64b5d Mon Sep 17 00:00:00 2001 From: Andy Neebel Date: Thu, 27 Apr 2017 15:24:06 -0500 Subject: [PATCH] Add appveyor file to run tests on windows --- .appveyor.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .appveyor.yml diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 000000000..6e63d8c7d --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,27 @@ +environment: + global: + TEST: -v --durations 25 + PYTHONFAULTHANDLER: x + PYTHONWARNINGS: all + + matrix: + - PYTHON: 27 + DOCUTILS: 0.12 + - PYTHON: 27 + DOCUTILS: 0.13.1 + - PYTHON: 36 + DOCUTILS: 0.13.1 + - PYTHON: 36-x64 + DOCUTILS: 0.13.1 + +install: + - C:\Python%PYTHON%\python.exe -m pip install -U pip setuptools + - C:\Python%PYTHON%\python.exe -m pip install docutils==%DOCUTILS% + - C:\Python%PYTHON%\python.exe -m pip install -r test-reqs.txt + +# No automatic build, just run python tests +build: off + +test_script: + - cd tests + - C:\Python%PYTHON%\python.exe run.py --ignore py35 %TEST%