Files
responder/tests/conftest.py
T
2018-10-13 21:56:52 +01:00

13 lines
186 B
Python

from pathlib import Path
import pytest
@pytest.fixture
def data_dir(current_dir):
yield current_dir / "data"
@pytest.fixture()
def current_dir():
yield Path(__file__).parent