make builtin plugins a list
This commit is contained in:
parent
bc2247219f
commit
026cd36237
|
@ -107,11 +107,33 @@ def directory_arg(path, optname):
|
||||||
|
|
||||||
|
|
||||||
default_plugins = (
|
default_plugins = (
|
||||||
"mark main terminal runner python fixtures debugging unittest capture skipping "
|
"mark",
|
||||||
"tmpdir monkeypatch recwarn pastebin helpconfig nose assertion "
|
"main",
|
||||||
"junitxml resultlog doctest cacheprovider freeze_support "
|
"terminal",
|
||||||
"setuponly setupplan warnings logging"
|
"runner",
|
||||||
).split()
|
"python",
|
||||||
|
"fixtures",
|
||||||
|
"debugging",
|
||||||
|
"unittest",
|
||||||
|
"capture",
|
||||||
|
"skipping",
|
||||||
|
"tmpdir",
|
||||||
|
"monkeypatch",
|
||||||
|
"recwarn",
|
||||||
|
"pastebin",
|
||||||
|
"helpconfig",
|
||||||
|
"nose",
|
||||||
|
"assertion",
|
||||||
|
"junitxml",
|
||||||
|
"resultlog",
|
||||||
|
"doctest",
|
||||||
|
"cacheprovider",
|
||||||
|
"freeze_support",
|
||||||
|
"setuponly",
|
||||||
|
"setupplan",
|
||||||
|
"warnings",
|
||||||
|
"logging",
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
builtin_plugins = set(default_plugins)
|
builtin_plugins = set(default_plugins)
|
||||||
|
|
Loading…
Reference in New Issue