Trying out appveyor Windows builds

This commit is contained in:
Piotr Lizonczyk
2017-11-03 23:19:29 +01:00
parent 5a9f814a81
commit 4be0891658

22
appveyor.yml Executable file
View File

@@ -0,0 +1,22 @@
environment:
matrix:
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36-x64"
install:
- "%PYTHON%\\python.exe -m pip install -r requirements.txt"
- "%PYTHON%\\python.exe -m pip install pytest"
build: off
test_script:
- "%PYTHON%\\python.exe -m pytest"
after_test:
- "%PYTHON%\\python.exe setup.py bdist_wheel"
artifacts:
# bdist_wheel puts your built wheel in the dist directory
- path: dist\*