Skip to content

Commit e581dbb

Browse files
author
ashariyar
committed
set LOG_DIR for github actions
1 parent 424c6bd commit e581dbb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/conftest.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
from os import environ, pardir, path, remove
2+
from pathlib import Path
23

34
import pytest
45

56
PYTESTS_DIR = path.dirname(__file__)
6-
LOG_DIR = path.join(PYTESTS_DIR, pardir, 'log')
7+
LOG_DIR = str(Path(path.join(PYTESTS_DIR, pardir, 'log')).resolve())
78
FILE_FIXTURE_PATH = path.join(PYTESTS_DIR, 'file_fixtures')
89

910
# Some env vars that we need or are helpful for pytest

0 commit comments

Comments
 (0)