mirror of
https://github.com/arcan1s/ahriman.git
synced 2026-07-14 14:51:08 +00:00
11 lines
249 B
Python
11 lines
249 B
Python
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
from fixtures import * # pylint: disable=wildcard-import,unused-wildcard-import
|
|
|
|
|
|
@pytest.fixture
|
|
def resource_path_root() -> Path:
|
|
return Path(__file__).resolve().parents[2] / "tests" / "testresources"
|