qutebrowser/.appveyor.yml

20 lines
444 B
YAML
Raw Normal View History

shallow_clone: true
2015-06-10 18:35:19 +02:00
version: '{branch}-{build}'
2015-07-14 07:17:36 +02:00
cache:
- C:\projects\qutebrowser\.cache
2015-06-10 18:35:19 +02:00
build: off
environment:
PYTHONUNBUFFERED: 1
2019-02-25 10:36:08 +01:00
PYTHON: C:\Python37-x64\python.exe
2015-10-05 23:30:33 +02:00
matrix:
2019-02-25 10:36:08 +01:00
- TESTENV: py37-pyqt512
2015-10-05 23:30:33 +02:00
- TESTENV: pylint
2015-06-10 18:35:19 +02:00
install:
2017-05-17 21:33:50 +02:00
- '%PYTHON% -m pip install -U pip'
- '%PYTHON% -m pip install -r misc\requirements\requirements-tox.txt'
2019-02-25 10:36:08 +01:00
- 'set PATH=C:\Python37-x64;%PATH'
2015-06-10 18:35:19 +02:00
test_script:
2017-05-17 21:33:50 +02:00
- '%PYTHON% -m tox -e %TESTENV%'