Переименованы документы о тестировании

This commit is contained in:
2026-05-28 18:57:47 +03:00
parent 21221ef37b
commit 0c0dda8cc6
6 changed files with 26 additions and 10 deletions

View File

@@ -8,9 +8,25 @@ 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"
stems=(
01_plan_testing
02_test_sets
03_automation_code
04_test_report
)
pdfs=(
"КТбо4-9_ПытковРЕ_1.1_План_тестирования.pdf"
"КТбо4-9_ПытковРЕ_1.2_Наборы_тестов.pdf"
"КТбо4-9_ПытковРЕ_1.3_Автоматизированноеестирование.pdf"
"КТбо4-9_ПытковРЕ_1.4_Отчёт_о_проведении_тестирования.pdf"
)
for i in "${!stems[@]}"; do
stem="${stems[$i]}"
pdf="${pdfs[$i]}"
echo "Compiling $stem.typ → $pdf ..."
typst compile --root .. "$EXPORT/$stem.typ" "$EXPORT/$pdf"
done
echo "Done: $EXPORT/*.pdf"
echo "Done:"
printf ' %s\n' "${pdfs[@]}"