Отдельные документы о тестировании
This commit is contained in:
16
Report/testing-export/scripts/build.sh
Executable file
16
Report/testing-export/scripts/build.sh
Executable 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"
|
||||
Reference in New Issue
Block a user