Use 64-bit Python on AppVeyor

QtWebEngine isn't available in the 32-bit build.
This commit is contained in:
Florian Bruhin 2018-07-03 11:06:31 +02:00
parent ec0bbe67f8
commit 49be92e047

View File

@ -5,7 +5,7 @@ cache:
build: off
environment:
PYTHONUNBUFFERED: 1
PYTHON: C:\Python36\python.exe
PYTHON: C:\Python36-x64\python.exe
matrix:
- TESTENV: py36-pyqt511
- TESTENV: pylint
@ -13,7 +13,7 @@ environment:
install:
- '%PYTHON% -m pip install -U pip'
- '%PYTHON% -m pip install -r misc\requirements\requirements-tox.txt'
- 'set PATH=%PATH%;C:\Python36'
- 'set PATH=%PATH%;C:\Python36-x64'
test_script:
- '%PYTHON% -m tox -e %TESTENV%'