e301ee0df1
The tox option to skip source distribution building is skipsdist, but this seems to be often misspelled skipdist instead, which gets silently ignored and so does not take effect. Correct it everywhere, in hopes that new projects will finally stop copying this mistake around. See https://tox.readthedocs.io/en/latest/config.html#conf-skipsdist and https://github.com/tox-dev/tox/issues/1388 for details. Change-Id: I9b7768fdb4e8865648da1c697fa16ee2d1a9c604
12 lines
209 B
INI
12 lines
209 B
INI
[tox]
|
|
minversion = 2.0
|
|
envlist = linters
|
|
skipsdist = true
|
|
|
|
[testenv]
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
|
|
[testenv:linters]
|
|
# TODO(redrobot): Don't ignore 301
|
|
commands = ansible-lint -x 301 {toxinidir}
|