forked from josch/img2pdf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
834 B
31 lines
834 B
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 tox wheel pyinstaller" |
|
|
|
build: off |
|
|
|
test_script: |
|
- "%PYTHON%\\python.exe -m tox" |
|
|
|
after_test: |
|
- "%PYTHON%\\python.exe setup.py bdist_wheel" |
|
- "%PYTHON%\\python.exe -m PyInstaller --clean --onefile --noconsole src/img2pdf.py" |
|
|
|
artifacts: |
|
- path: dist\*
|
|
|