1
0
Fork 0
forked from josch/img2pdf

add appveyor.yml

This commit is contained in:
Johannes 'josch' Schauer 2019-08-25 06:05:43 +02:00
parent 2b26daeb47
commit c17fd0011d
Signed by untrusted user: josch
GPG key ID: F2CBA5C78FBD83E1

31
appveyor.yml Normal file
View file

@ -0,0 +1,31 @@
environment:
# For Python versions available on Appveyor, see
# https://www.appveyor.com/docs/windows-images-software/#python
matrix:
# - PYTHON: "C:\\Python27"
# - PYTHON: "C:\\Python33"
# - PYTHON: "C:\\Python34"
# - PYTHON: "C:\\Python35"
# - PYTHON: "C:\\Python36"
# - PYTHON: "C:\\Python37"
# - PYTHON: "C:\\Python27-x64"
# - PYTHON: "C:\\Python33-x64"
# - PYTHON: "C:\\Python34-x64"
# - PYTHON: "C:\\Python35-x64"
# - PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python37-x64"
install:
- "%PYTHON%\\python.exe -m pip install wheel pytest pdfrw pillow pyinstaller"
build: off
test_script:
- "%PYTHON%\\python.exe setup.py test"
after_test:
- "%PYTHON%\\python.exe setup.py bdist_wheel"
- "%PYTHON%\\python.exe -m PyInstaller --clean --onefile --noconsole src/img2pdf.py"
artifacts:
- path: dist\*