We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 424c6bd commit e581dbbCopy full SHA for e581dbb
tests/conftest.py
@@ -1,9 +1,10 @@
1
from os import environ, pardir, path, remove
2
+from pathlib import Path
3
4
import pytest
5
6
PYTESTS_DIR = path.dirname(__file__)
-LOG_DIR = path.join(PYTESTS_DIR, pardir, 'log')
7
+LOG_DIR = str(Path(path.join(PYTESTS_DIR, pardir, 'log')).resolve())
8
FILE_FIXTURE_PATH = path.join(PYTESTS_DIR, 'file_fixtures')
9
10
# Some env vars that we need or are helpful for pytest
0 commit comments