Merge pull request #116 from allanlewis/dest-default-type

xdist.plugin: Remove unnecessary `type` for --dist
This commit is contained in:
Bruno Oliveira
2017-01-23 12:49:57 -02:00
committed by GitHub

View File

@@ -32,7 +32,7 @@ def pytest_addoption(parser):
group._addoption( group._addoption(
'--dist', metavar="distmode", '--dist', metavar="distmode",
action="store", choices=['load', 'each', 'no'], action="store", choices=['load', 'each', 'no'],
type=str, dest="dist", default="no", dest="dist", default="no",
help=("set mode for distributing tests to exec environments.\n\n" help=("set mode for distributing tests to exec environments.\n\n"
"each: send each test to each available environment.\n\n" "each: send each test to each available environment.\n\n"
"load: send each test to available environment.\n\n" "load: send each test to available environment.\n\n"