summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2018-07-03 11:06:31 +0200
committerFlorian Bruhin <git@the-compiler.org>2018-07-03 11:06:31 +0200
commit49be92e047a96a7fc2c7c23a269292e560701299 (patch)
tree66f11f6f7215ea324afdcc25c0d1d918e5b8740d
parentec0bbe67f8b67c8419a0e6b815bcf979a38310af (diff)
downloadqutebrowser-49be92e047a96a7fc2c7c23a269292e560701299.tar.gz
qutebrowser-49be92e047a96a7fc2c7c23a269292e560701299.zip
Use 64-bit Python on AppVeyor
QtWebEngine isn't available in the 32-bit build.
-rw-r--r--.appveyor.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index d336f20cc..70e51fa42 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -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%'