3179455e69
- The environment to run unittests is now called py34 as that's the common thing used, and will also allow us to run the tests with Python 3.5. - The default tests now also run coverage.py and do a coverage check (on Linux). - The smoke tests are now part of the default environment.
20 lines
479 B
YAML
20 lines
479 B
YAML
shallow_clone: true
|
|
version: '{branch}-{build}'
|
|
cache:
|
|
- C:\projects\qutebrowser\.tox
|
|
- C:\projects\qutebrowser\.cache
|
|
build: off
|
|
environment:
|
|
PYTHON: 'C:\Python34'
|
|
PYTHONUNBUFFERED: 1
|
|
|
|
install:
|
|
- C:\Python27\python -u scripts\dev\ci_install.py
|
|
|
|
test_script:
|
|
- C:\Python34\Scripts\tox -e py34
|
|
- C:\Python34\Scripts\tox -e unittests-frozen
|
|
- C:\Python34\Scripts\tox -e smoke-frozen
|
|
- C:\Python34\Scripts\tox -e pyflakes
|
|
- C:\Python34\Scripts\tox -e pylint
|