From 6bae6d910bf9a0746a3ceb39a7045d56821f7a4f Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Wed, 8 Nov 2017 11:31:25 +0700 Subject: [PATCH 1/2] Avoid use of bash in tox --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 0ec9805d..42492fb7 100644 --- a/tox.ini +++ b/tox.ini @@ -14,7 +14,7 @@ deps = commands = {envbindir}/py.test {posargs} - {toxinidir}/flake8-run.sh + flake8 {toxinidir} [testenv:doc] changedir = doc From e8ddd0725eefac13f4dc9768418db8edb9fce310 Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Wed, 8 Nov 2017 11:22:33 +0700 Subject: [PATCH 2/2] Add AppVeyor build control file --- .appveyor.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .appveyor.yml diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 00000000..9284c913 --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,16 @@ +# To activate, change the Appveyor settings to use `.appveyor.yml`. +init: + - SET PATH=C:\\Python27\\Scripts\\;%PATH%" + +install: + - git submodule update --init --recursive + - python -m pip install tox + +build: off + +test_script: + # Avoid py35-optional, as pypi does not have lxml wheels for py35 + - python -m tox -e "py35-base,{py27,py33,py34}-{base,optional}" + +after_test: + - python debug-info.py