make paths absolute
This commit is contained in:
parent
2919a33191
commit
3d2f4d939d
1 changed files with 1 additions and 1 deletions
|
|
@ -18,7 +18,7 @@ class DirManager:
|
||||||
|
|
||||||
def __init__(self, tests_dir: Path, session_id: str):
|
def __init__(self, tests_dir: Path, session_id: str):
|
||||||
# root test dir
|
# root test dir
|
||||||
self.tests_dir = tests_dir
|
self.tests_dir = tests_dir.resolve()
|
||||||
self.session_id = session_id
|
self.session_id = session_id
|
||||||
|
|
||||||
self.dirs = self._get_all_dirs()
|
self.dirs = self._get_all_dirs()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue