60b04422a3
While pytest-sugar was nice to look at, it produced a lot of issues: - Unusable on CI - Unusable on OS X and Windows - Garbage when terminal was resized during tests - Missing space after test name since some while This replaces it by pytest-instafail, which replaces the most important feature of sugar, and on top of that, also works on CI.
18 lines
368 B
YAML
18 lines
368 B
YAML
shallow_clone: true
|
|
version: '{branch}-{build}'
|
|
cache:
|
|
- C:\projects\qutebrowser\.cache
|
|
build: off
|
|
environment:
|
|
PYTHONUNBUFFERED: 1
|
|
matrix:
|
|
- TESTENV: py34
|
|
- TESTENV: unittests-frozen
|
|
- TESTENV: pylint
|
|
|
|
install:
|
|
- C:\Python27\python -u scripts\dev\ci_install.py
|
|
|
|
test_script:
|
|
- C:\Python34\Scripts\tox -e %TESTENV% -- -v --junitxml=junit.xml
|