To signify move of the development to GitHub, tip of the default branch is removed and README.md is left in place to point to the new location. Change-Id: I5a8ba8a740f8d7c455929a6f0eab77358bb13b99 Signed-off-by: Martin Kalcok <martin.kalcok@canonical.com>
36 lines
671 B
INI
36 lines
671 B
INI
# Placeholder tox.ini to satisfy CI on final push that
|
|
# archives the repository.
|
|
[tox]
|
|
envlist = pep8,pylint,py3
|
|
# NOTE: Avoid build/test env pollution by not enabling sitepackages.
|
|
sitepackages = False
|
|
# NOTE: Avoid false positives by not skipping missing interpreters.
|
|
skip_missing_interpreters = False
|
|
|
|
[testenv]
|
|
allowlist_externals=true
|
|
|
|
[testenv:py3]
|
|
basepython = python3
|
|
commands = true
|
|
|
|
[testenv:py310]
|
|
basepython = python3.10
|
|
commands = true
|
|
|
|
[testenv:pep8]
|
|
basepython = python3
|
|
commands = true
|
|
|
|
[testenv:pylint]
|
|
basepython = python3
|
|
commands = true
|
|
|
|
[testenv:cover]
|
|
basepython = python3
|
|
commands = true
|
|
|
|
[testenv:venv]
|
|
basepython = python3
|
|
commands = {posargs}
|