Fix type of tmp_path_retention_count option

This commit is contained in:
Yusuke Kadowaki 2022-10-23 17:23:54 +09:00
parent 30436777f6
commit 92eb443842
1 changed files with 1 additions and 0 deletions

View File

@ -232,6 +232,7 @@ def pytest_addoption(parser: Parser) -> None:
"--tmp-path-retention-count",
dest="tmp_path_retention_count",
default=3,
type="int",
metavar="num",
help="How many sessions should we keep the `tmp_path` directories, according to `tmp_path_retention_policy`.",
)