10 lines
199 B
Python
Raw Permalink Normal View History

2024-07-24 17:15:46 +03:00
from pathlib import Path
from pytest import fixture
@fixture
def output_folder():
folder = Path(__file__).parent / "test_output"
folder.mkdir(parents=True, exist_ok=True)
return folder