We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9489ec2 commit d564b9eCopy full SHA for d564b9e
tests/conftest.py
@@ -22,6 +22,7 @@
22
# To purchase a commercial license, send an email to license@arduino.cc.
23
#
24
import json
25
+import os
26
import pathlib
27
import platform
28
import typing
@@ -121,4 +122,4 @@ def working_dir(tmpdir_factory) -> str:
121
122
end. This way all the tests work in isolation.
123
"""
124
work_dir = tmpdir_factory.mktemp(basename="TestWorkingDir")
- yield str(work_dir)
125
+ yield os.path.realpath(work_dir)
0 commit comments