Files
whisper-rtx2080/test_all.sh
mozempk 78c6fab81b
All checks were successful
Build & Push Docker Image / build-and-push (push) Successful in 16s
fix: remove duplicate old test suite and fix step 9 pipe/heredoc bug
Step 9 used 'echo $RESULT | python3 - << HEREDOC' which is a bash gotcha:
the heredoc takes over stdin (as the script source), so the pipe is
silently ignored and sys.stdin.read() returns empty string → JSONDecodeError.

Fix: write RESULT to a temp file and pass it as sys.argv[1] to the script.

Also removed the old buggy test suite that was accidentally left appended
at lines 181-327 (had language=auto, ['id'] field, wrong DELETE assertion).

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-05-06 12:13:15 +02:00

6.6 KiB