File size: 172 Bytes
eab734a | 1 2 3 4 5 6 7 8 9 10 11 12 13 | from __future__ import annotations
from pathlib import Path
import pytest
from helpers import FIXTURES
@pytest.fixture
def fixtures_dir() -> Path:
return FIXTURES
|
eab734a | 1 2 3 4 5 6 7 8 9 10 11 12 13 | from __future__ import annotations
from pathlib import Path
import pytest
from helpers import FIXTURES
@pytest.fixture
def fixtures_dir() -> Path:
return FIXTURES
|