diff options
-rw-r--r-- | appveyor.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..249b3a2 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,16 @@ +environment: + matrix: + - PYTHON: "C:\\Python27-x64" + +cache: + - servers + +install: + - build_integration.sh + - "%PYTHON%\\python.exe -m pip install tox" + - "%PYTHON%\\python.exe -m pip install ." + +build: off + +test_script: + - "%PYTHON%\\python.exe -m tox -e py" |