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: Ibaf0c26125319f655d0deb34358daf873aefdf6c
This commit is contained in:
Jeremy Stanley 2021-06-17 17:19:28 +00:00
parent 9159108b31
commit 62dc60b7e4

View File

@ -3,7 +3,7 @@ basepython = python3
minversion = 2.0
# add docs to the list of environments once we actually have docs to generate
envlist = py36,pep8,molecule,linters
skipdist = True
skipsdist = True
[testenv]
usedevelop = True