qutebrowser/.appveyor.yml

23 lines
677 B
YAML

shallow_clone: true
version: '{branch}-{build}'
cache:
- C:\projects\qutebrowser\.cache
build: off
environment:
PYTHONUNBUFFERED: 1
PYTHON: C:\Python37-x64\python.exe
matrix:
- TESTENV: py37-pyqt512
# - TESTENV: pylint
install:
- 'curl -o python-webinstall.exe https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64-webinstall.exe'
- 'python-webinstall.exe /passive Include_test=0 Include_doc=0 Include_dev=0 Include_tcltk=0'
- '%PYTHON% --version'
- '%PYTHON% -m pip install -U pip'
- '%PYTHON% -m pip install -r misc\requirements\requirements-tox.txt'
- 'set PATH=C:\Python37-x64;%PATH'
test_script:
- '%PYTHON% -m tox -e %TESTENV%'