use the constant for lock timeouts

This commit is contained in:
Ronny Pfannschmidt 2018-10-02 20:29:33 +02:00
parent 94829c391b
commit ebd597b2fd
1 changed files with 2 additions and 1 deletions

View File

@ -13,6 +13,7 @@ from .pathlib import (
make_numbered_dir,
make_numbered_dir_with_cleanup,
ensure_reset_dir,
LOCK_TIMEOUT,
)
@ -60,7 +61,7 @@ class TempPathFactory(object):
rootdir = temproot.joinpath("pytest-of-{}".format(user))
rootdir.mkdir(exist_ok=True)
basetemp = make_numbered_dir_with_cleanup(
prefix="pytest-", root=rootdir, keep=3, lock_timeout=10000
prefix="pytest-", root=rootdir, keep=3, lock_timeout=LOCK_TIMEOUT
)
assert basetemp is not None
self._basetemp = t = basetemp