Skip to content

Commit 5887083

Browse files
committed
os.path.realpath venv root
1 parent 74a5b03 commit 5887083

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

pyperformance/tests/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ def cleanup():
8484
onfail="raise",
8585
verbose=verbose,
8686
)
87-
return root, _resolve_venv_python(root), cleanup
87+
venv_root = os.path.realpath(root)
88+
return venv_root, _resolve_venv_python(venv_root), cleanup
8889

8990

9091
class CleanupFile:

0 commit comments

Comments
 (0)