summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/functional/conftest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/functional/conftest.py b/tools/functional/conftest.py
index e12471b..e60fa39 100644
--- a/tools/functional/conftest.py
+++ b/tools/functional/conftest.py
@@ -1,5 +1,5 @@
-import os
import tempfile
+from pathlib import Path
from random import randint
import pytest
@@ -22,7 +22,7 @@ def random_id():
@pytest.fixture(scope="session")
def CONFIG():
- return os.path.join(TEMP_DIR, "python-gitlab.cfg")
+ return Path(TEMP_DIR) / "python-gitlab.cfg"
@pytest.fixture(scope="session")