7 lines
164 B
Python
7 lines
164 B
Python
import pytest
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
@pytest.fixture(scope="session")
|
|
def prompts_dir(tmp_path_factory):
|
|
return tmp_path_factory.mktemp("prompts") |