ci: retain installed artifact checks in matrix
All checks were successful
Dependency Audit / dependency-audit (push) Successful in 1m42s
Security Audit / security-audit (push) Successful in 4m7s

This commit is contained in:
2026-07-23 00:57:24 +02:00
parent cd15aa514e
commit ff49dabf8f
2 changed files with 7 additions and 1 deletions

View File

@@ -95,7 +95,11 @@ class ReleaseIntegrationTests(unittest.TestCase):
meta_root = Path(__file__).resolve().parents[1]
script = (meta_root / "tools" / "checks" / "check-module-matrix.sh").read_text(encoding="utf-8")
self.assertIn('"$META_ROOT/tools/checks/release_integration.py" core-tests', script)
artifact_check = script.index('"$META_ROOT/tools/checks/release_integration.py" artifacts')
core_tests = script.index('"$META_ROOT/tools/checks/release_integration.py" core-tests')
self.assertLess(artifact_check, core_tests)
self.assertIn('--requirements "$META_ROOT/requirements-release.txt"', script)
self.assertIn('--core-root "$ROOT"', script)
self.assertNotIn('"$PYTHON" -m unittest tests.test_module_system', script)