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