Document mesh ingestor modules with PDoc-style docstrings (#255)

This commit is contained in:
l5y
2025-10-07 08:59:38 +02:00
committed by GitHub
parent 363b4c5525
commit a5a2ae5edc
10 changed files with 418 additions and 21 deletions
+4 -1
View File
@@ -2,6 +2,9 @@ import base64
import importlib
import sys
import types
"""End-to-end tests covering the mesh ingestion package."""
from dataclasses import dataclass
from pathlib import Path
from types import SimpleNamespace
@@ -11,7 +14,7 @@ import pytest
@pytest.fixture
def mesh_module(monkeypatch):
"""Import data.mesh with stubbed dependencies."""
"""Import :mod:`data.mesh` with stubbed dependencies."""
repo_root = Path(__file__).resolve().parents[1]
monkeypatch.syspath_prepend(str(repo_root))