summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2017-04-26 10:29:35 -0400
committerJason R. Coombs <jaraco@jaraco.com>2017-04-26 10:29:35 -0400
commit3383a3aceb435cef929c13dff3e54e46af01cf49 (patch)
treeb10e2ece68c2f12278f86bc1f6d83f3463c56477
parent243e44fdb797ae54a08eb02d924f88e775e74ba9 (diff)
downloadpytest-runner-3383a3aceb435cef929c13dff3e54e46af01cf49.tar.gz
Add appveyor script for CI testing on Windows.
-rw-r--r--appveyor.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..e856af3
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,19 @@
+environment:
+
+ APPVEYOR: true
+
+ matrix:
+ - PYTHON: "C:\\Python36-x64"
+ - PYTHON: "C:\\Python27-x64"
+
+install:
+ # symlink python from a directory with a space
+ - "mklink /d \"C:\\Program Files\\Python\" %PYTHON%"
+ - "SET PYTHON=\"C:\\Program Files\\Python\""
+ - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
+
+build: off
+
+test_script:
+ - "python -m pip install tox"
+ - "tox"