2019-06-30 23:39:09 +00:00
|
|
|
environment:
|
|
|
|
# For Python versions available on Appveyor, see
|
|
|
|
# https://www.appveyor.com/docs/windows-images-software/#python
|
|
|
|
matrix:
|
2019-07-01 07:05:41 +00:00
|
|
|
# - 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"
|
2019-06-30 23:39:09 +00:00
|
|
|
- PYTHON: "C:\\Python37-x64"
|
2022-06-15 19:01:18 +00:00
|
|
|
platform: x64
|
|
|
|
- PYTHON: "C:\\Python37"
|
|
|
|
platform: x86
|
2019-06-30 23:39:09 +00:00
|
|
|
|
|
|
|
install:
|
2020-05-23 23:13:41 +00:00
|
|
|
- "%PYTHON%\\python.exe -m pip install wheel PyMuPDF pytest pyinstaller"
|
2019-06-30 23:39:09 +00:00
|
|
|
|
|
|
|
build: off
|
|
|
|
|
|
|
|
test_script:
|
2020-06-09 22:38:06 +00:00
|
|
|
- "%PYTHON%\\python.exe -m pytest"
|
2019-06-30 23:39:09 +00:00
|
|
|
|
|
|
|
after_test:
|
|
|
|
- "%PYTHON%\\python.exe setup.py bdist_wheel"
|
|
|
|
- "%PYTHON%\\python.exe -m PyInstaller --clean --onefile --noconsole plakativ.py"
|
|
|
|
|
|
|
|
artifacts:
|
|
|
|
- path: dist\*
|