Add even more tests

This commit is contained in:
Kylian Schmidt
2025-09-09 14:00:37 +02:00
parent ded4eca0bf
commit 4352d26a7b
7 changed files with 812 additions and 5 deletions
+2 -2
View File
@@ -17,8 +17,8 @@ def test_python_version():
def test_required_modules():
"""Test that required Python modules are installed."""
try:
import jinja2 # type: ignore
import yaml # type: ignore
import jinja2 # noqa: F401
import yaml # noqa: F401
except ImportError as e:
pytest.fail(f"Required module not found: {e}")