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
(cherry picked from commit 62dc60b7e4)
This commit is contained in:
Jeremy Stanley 2021-06-17 17:19:28 +00:00 committed by Grzegorz Grasza
parent 7646c08755
commit 69e151fd70
1 changed files with 1 additions and 1 deletions

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