.github: disable tests in CI for now
- ID
7ce8cd4- date
2025-10-05 07:10:49+00:00- author
Alex Chan <alex@alexwlchan.net>- parent
13b0b3d- message
.github: disable tests in CI for now- changed files
1 file, 5 additions, 2 deletions
Changed files
.github/workflows/test.yml (674) → .github/workflows/test.yml (897)
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 7d12454..1e179b3 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -36,5 +36,8 @@ jobs:
ruff check .
ruff format --check .
- - name: Run tests
- run: pytest tests
+ # I don't run tests in GitHub Actions because YouTube blocks yt-dlp
+ # without authentication, and I don't want to sort out passing cookies
+ # in CI for now -- I can run the tests locally, that's good enough.
+ # - name: Run tests
+ # run: pytest tests