Dan Streetman dbd453876e flake8 tests no longer need to specifically exclude ubuntu-archive-assistant
Now that ubuntu-archive-assistant is removed, we can simply test everything
with flake8
2021-07-12 12:45:27 -04:00

23 lines
476 B
INI

[tox]
envlist = flake8,nose
skipsdist = True
[testenv]
base_python = python3
setenv = VIRTUAL_ENV={envdir}
PYTHONHASHSEED=0
usedevelop = True
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
install_command = pip install {opts} {packages}
[testenv:flake8]
commands = flake8 {posargs}
[testenv:nose]
commands = nosetests -v --with-coverage --cover-package=ubuntutools {posargs:ubuntutools}
[flake8]
verbose = 2
max-line-length = 99