From 523f913e5e146fc992245d689938bef71a4326a9 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 12:33:46 +0000 Subject: [PATCH] Add test suite --- 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 0000000..3c302b2 --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,7 @@ +import pytest +import sys +from pathlib import Path + +@pytest.fixture(scope="session") +def prompts_dir(tmp_path_factory): + return tmp_path_factory.mktemp("prompts") \ No newline at end of file