refactor: enhance execution testing for batch.py with output monitoring and timeout handling
Some checks failed
Code Check - Quality and Syntax / syntax-lint (3.14) (push) Failing after 11s
Code Check - Quality and Syntax / syntax-lint (3.11) (push) Failing after 11s
Code Check - Quality and Syntax / syntax-lint (3.12) (push) Failing after 12s
Code Check - Quality and Syntax / syntax-lint (3.13) (push) Failing after 35s

This commit is contained in:
Space-Banane
2026-04-06 23:13:56 +02:00
parent f6ba595d35
commit 558ddea80b

View File

@@ -47,7 +47,54 @@ jobs:
files=$(git ls-files '*.py')
for file in $files; do
echo "Testing execution of $file..."
# Try to run the file with a 5-second timeout
# Special-case: run `batch.py` and watch its output for the marker
if [ "$file" = "batch.py" ]; then
tmp=$(mktemp)
# Run the script with line-buffered output to a temp file
stdbuf -oL python "$file" >"$tmp" 2>&1 &
pid=$!
# Start a monitor that follows the temp file and kills the process when pattern seen
( stdbuf -oL tail -F "$tmp" 2>/dev/null | stdbuf -oL grep -m1 --line-buffered ' yt-dlp batch' && kill $pid ) &
monitor_pid=$!
# Wait up to 5s for the process to exit (or be killed by the monitor)
timeout 5s wait $pid 2>/dev/null || true
status=$?
# Stop the monitor and cleanup
kill $monitor_pid 2>/dev/null || true
wait $monitor_pid 2>/dev/null || true
# If the marker was seen in the temp output, treat as success
if grep -q ' yt-dlp batch' "$tmp"; then
echo "Marker seen in $file output — considered working"
rm -f "$tmp"
continue
fi
rm -f "$tmp"
# If process exited successfully, continue; otherwise fall back to compile check
if [ $status -eq 0 ]; then
continue
fi
if [ $status -eq 124 ]; then
echo "Timed out without marker for $file"
fi
python -m py_compile "$file"
status2=$?
if [ $status2 -ne 0 ]; then
echo "Execution or compile failed for $file (exit $status or $status2)"
exit $status2
fi
continue
fi
# Default behavior for other files: try --version with a 5s timeout
timeout 5s python "$file" --version
status=$?