Fix option type
This commit is contained in:
parent
6bc424cb05
commit
e9ee831d9f
|
@ -232,7 +232,7 @@ def pytest_addoption(parser: Parser) -> None:
|
||||||
"--tmp-path-retention-count",
|
"--tmp-path-retention-count",
|
||||||
dest="tmp_path_retention_count",
|
dest="tmp_path_retention_count",
|
||||||
default=3,
|
default=3,
|
||||||
type="int",
|
type=int,
|
||||||
metavar="num",
|
metavar="num",
|
||||||
help="How many sessions should we keep the `tmp_path` directories, according to `tmp_path_retention_policy`.",
|
help="How many sessions should we keep the `tmp_path` directories, according to `tmp_path_retention_policy`.",
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue