Отдельные документы о тестировании

This commit is contained in:
2026-05-28 18:07:46 +03:00
parent 32c579e0c0
commit f7023380b3
23 changed files with 141922 additions and 71 deletions

View File

@@ -0,0 +1,16 @@
#!/usr/bin/env bash
# Сборка четырёх PDF для загрузки по критериям тестирования.
set -euo pipefail
REPORT="$(cd "$(dirname "$0")/../.." && pwd)"
EXPORT="$(cd "$(dirname "$0")/.." && pwd)"
cd "$REPORT"
python3 scripts/gen_test_listings.py
for stem in 01_plan_testing 02_test_sets 03_automation_code 04_test_report; do
echo "Compiling $stem.typ ..."
typst compile --root .. "$EXPORT/$stem.typ" "$EXPORT/$stem.pdf"
done
echo "Done: $EXPORT/*.pdf"