1
0
Fork 0
ablog/conftest.py
Daniel Baumann 2f2c7f3767
Adding upstream version 0.11.12.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-10 17:15:56 +01:00

30 lines
758 B
Python

from pathlib import Path
import docutils
import pytest
import sphinx
# Load app, status and warning fixtures.
pytest_plugins = ["sphinx.testing.fixtures"]
# inspired from sphinx's conftest.py
def pytest_report_header(config):
header = f"libraries: Sphinx-{sphinx.__display_version__}, docutils-{docutils.__version__}"
if hasattr(config, "_tmp_path_factory"):
header += f"\nbase tempdir: {config._tmp_path_factory.getbasetemp()}"
return header
@pytest.fixture(scope="session")
def rootdir():
return Path(__file__).parent.absolute() / "roots"
@pytest.fixture(scope="function", autouse=True)
def reset_blog_config():
# Reset cached configurations to enable confoverrides
from ablog.blog import Blog
Blog._dict = {}