Correct the tox option for skipping sdist generation

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: Ieee8041dd177b28d74a0f175fb6df340d158c3c9
This commit is contained in:
Jeremy Stanley 2021-06-17 17:18:39 +00:00 committed by Federico Ressi
parent d2bbd9395c
commit 1f7ad83f71
1 changed files with 5 additions and 5 deletions

10
tox.ini
View File

@ -236,7 +236,7 @@ setenv =
# package available only for /usr/bin/python interpreter
basepython = {env:IR_PYTHON:python3}
usedevelop = false
skipdist = true
skipsdist = true
skip_install = true
sitepackages = true
whitelist_externals =
@ -294,7 +294,7 @@ commands =
# dependencies are missing! This also means that bindep must be installed
# separately, outside of the requirements files.
usedevelop = false
skipdist = true
skipsdist = true
skip_install = true
@ -313,7 +313,7 @@ commands =
# dependencies are missing! This also means that bindep must be installed
# separately, outside of the requirements files.
usedevelop = false
skipdist = true
skipsdist = true
skip_install = false
@ -328,7 +328,7 @@ commands =
# dependencies are missing! This also means that bindep must be installed
# separately, outside of the requirements files.
usedevelop = false
skipdist = true
skipsdist = true
skip_install = true
@ -342,7 +342,7 @@ basepython = {[testenv:py3]basepython}
# dependencies are missing! This also means that bindep must be installed
# separately, outside of the requirements files.
usedevelop = false
skipdist = true
skipsdist = true
skip_install = true
deps = bindep
commands = bindep {posargs:test}