Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -246,3 +246,22 @@ jobs:
run: |
uv run python -O -m pytest kolibri --color=no
uv run python -O -m pytest --color=no -p no:django test
# Single stable check for branch protection. Skipped matrix jobs don't
# produce per-version check runs, so matrix-suffixed required checks hang
# as "Expected" on PRs that skip the tests; require this job instead.
required_checks:
name: Python tests
needs:
- pre_job
- unit_test
- unit_test_eol_python
- postgres
- postgres_ssl
- macos
- windows
if: always()
runs-on: ubuntu-latest
steps:
- name: Fail if any needed job failed or was cancelled
if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
run: exit 1
Loading