mirror of
https://github.com/gryf/pygtktalog.git
synced 2025-12-17 11:30:19 +01:00
In this patch, most notable changes are: - use python3 exclusively for tox - fix up broken tests - a couple of style issues fixes here and there
25 lines
521 B
INI
25 lines
521 B
INI
[tox]
|
|
envlist = cleanup,py3,pep8
|
|
|
|
usedevelop = True
|
|
|
|
[testenv]
|
|
basepython = python3
|
|
usedevelop=True
|
|
setenv = COVERAGE_FILE = .coverage
|
|
commands = py.test --cov=pygtktalog --cov-report=term-missing
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
|
|
[testenv:pep8]
|
|
usedevelop=True
|
|
commands = py.test --pep8 -m pep8
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
|
|
[testenv:cleanup]
|
|
setenv =
|
|
COVERAGE_FILE = .coverage
|
|
deps = coverage
|
|
commands = coverage erase
|