feat: add download_playlists.py for downloading playlists/videos with yt-dlp
Some checks failed
Code Check - Quality and Syntax / syntax-lint (3.11) (push) Failing after 11s
Code Check - Quality and Syntax / syntax-lint (3.13) (push) Failing after 9s
Code Check - Quality and Syntax / syntax-lint (3.14) (push) Failing after 11s

This commit is contained in:
Space-Banane
2026-04-07 00:31:48 +02:00
parent d1043a992f
commit 5e82ae99d1
3 changed files with 112 additions and 0 deletions

View File

@@ -48,6 +48,13 @@ jobs:
for file in $files; do
echo "Testing execution of $file..."
# Compile-only: do not execute this script in CI smoke tests
if [ "$file" = "download_playlists.py" ]; then
echo "Skipping execution for $file; running compile-only check"
python -m py_compile "$file"
continue
fi
# Special-case: run `batch.py` and watch its output for the marker
if [ "$file" = "batch.py" ]; then
tmp=$(mktemp)