aboutsummaryrefslogtreecommitdiffstats
path: root/datamaps/tests/conftest.py
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2019-10-02 20:22:53 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2019-10-02 20:22:53 +0100
commitcd83eadb211487857d113896a4b5f860746b034d (patch)
treee021f2ec13a4800232cb8ebec82282f417340305 /datamaps/tests/conftest.py
parent80d26e1a5be3f32fe04154d6edc0de2744c62994 (diff)
cleanup
Diffstat (limited to '')
-rw-r--r--datamaps/tests/conftest.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/datamaps/tests/conftest.py b/datamaps/tests/conftest.py
index 1e9bf07..97d4c76 100644
--- a/datamaps/tests/conftest.py
+++ b/datamaps/tests/conftest.py
@@ -1,8 +1,9 @@
import os
import shutil
+from pathlib import Path
import pytest
-from pathlib import Path
+
from engine.config import Config
@@ -36,4 +37,4 @@ def mock_config(monkeypatch):
@pytest.fixture
def resource_dir():
- return Path.cwd() / "tests" / "resources"
+ return Path.cwd() / "datamaps" / "tests" / "resources"