From 6dc87a99379f2210e2af86d008c40c445ecb8c25 Mon Sep 17 00:00:00 2001 From: Shyam D Date: Thu, 15 Oct 2020 15:53:48 -0700 Subject: [PATCH] test_dir as fixture --- tests/conftest.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tests/conftest.py diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 0000000000..7604433909 --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,7 @@ +from pathlib import Path +import pytest + + +@pytest.fixture +def test_dir(): + return Path(__file__).parent.joinpath("test_files").resolve() \ No newline at end of file