From 5b36bd7cc1d78ca203c2f458977144eb8990a17b Mon Sep 17 00:00:00 2001 From: Kevin Stillhammer Date: Tue, 18 Mar 2025 19:39:51 +0100 Subject: [PATCH] Add all-tests-passed We can configure branch protection rules to only depend on this job. This way we can keeo adding new jobs without needing to adjust the branch protection rules. --- .github/workflows/test.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 40cd065..8eda4dc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -440,6 +440,7 @@ jobs: needs: - test-tilde-expansion-cache-local-path - test-tilde-expansion-cache-dependency-glob + if: always() runs-on: selfhosted-ubuntu-arm64 steps: - name: Remove cache directory @@ -461,3 +462,35 @@ jobs: enable-cache: true - run: uv sync working-directory: __tests__/fixtures/old-python-constraint-project + + all-tests-passed: + runs-on: ubuntu-latest + needs: + - lint + - test-default-version + - test-specific-version + - test-semver-range + - test-pyproject-file-version + - test-malformed-pyproject-file-fallback + - test-uv-file-version + - test-checksum + - test-with-explicit-token + - test-uvx + - test-tool-install + - test-tilde-expansion-tool-dirs + - test-python-version + - test-musl + - test-restore-cache + - test-restore-cache-requirements-txt + - test-restore-cache-dependency-glob + - test-restore-cache-local + - test-tilde-expansion-cache-local-path + - test-tilde-expansion-cache-dependency-glob + - cleanup-tilde-expansion-tests + - test-no-python-version + if: always() + steps: + - name: All tests passed + run: | + echo "All jobs passed: ${{ !contains(needs.*.result, 'failure') }}" + exit ${{ contains(needs.*.result, 'failure') && 1 || 0 }}