mirror of
https://github.com/p2p-ld/numpydantic.git
synced 2024-11-12 17:54:29 +00:00
41 lines
1 KiB
Python
41 lines
1 KiB
Python
|
import shutil
|
||
|
from pathlib import Path
|
||
|
|
||
|
import pytest
|
||
|
|
||
|
|
||
|
@pytest.fixture(scope="session")
|
||
|
def tmp_output_dir() -> Path:
|
||
|
path = Path(__file__).parent.resolve() / "__tmp__"
|
||
|
if path.exists():
|
||
|
shutil.rmtree(str(path))
|
||
|
path.mkdir()
|
||
|
|
||
|
return path
|
||
|
|
||
|
|
||
|
@pytest.fixture(scope="function")
|
||
|
def tmp_output_dir_func(tmp_output_dir) -> Path:
|
||
|
"""
|
||
|
tmp output dir that gets cleared between every function
|
||
|
cleans at the start rather than at cleanup in case the output is to be inspected
|
||
|
"""
|
||
|
subpath = tmp_output_dir / "__tmpfunc__"
|
||
|
if subpath.exists():
|
||
|
shutil.rmtree(str(subpath))
|
||
|
subpath.mkdir()
|
||
|
return subpath
|
||
|
|
||
|
|
||
|
@pytest.fixture(scope="module")
|
||
|
def tmp_output_dir_mod(tmp_output_dir) -> Path:
|
||
|
"""
|
||
|
tmp output dir that gets cleared between every function
|
||
|
cleans at the start rather than at cleanup in case the output is to be inspected
|
||
|
"""
|
||
|
subpath = tmp_output_dir / "__tmpmod__"
|
||
|
if subpath.exists():
|
||
|
shutil.rmtree(str(subpath))
|
||
|
subpath.mkdir()
|
||
|
return subpath
|