Skip to content

Commit

Permalink
Temporarily removing test pass requirement for PRs
Browse files Browse the repository at this point in the history
We know that the current state of this implementaiton does not fully
work. Making this change is a compromise - it keeps the tests active and
running so we can see the output as we work on resolving issues, but
does not prevent us from merging early, incomplete code.

Once this implementation is more stable, we will re-enable this check
  • Loading branch information
gregmedd committed Jul 27, 2024
1 parent ab53e69 commit db76fd6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,11 @@ jobs:
ci:
name: CI status checks
runs-on: ubuntu-latest
needs: [build, test]
#needs: [build, test]
# NOTE tests are currently known failing. At this early stage, we will allow
# some PRs to merge without fixing those tests. This will be reverted in the
# near future.
needs: [build]
if: always()
steps:
- name: Check whether all jobs pass
Expand Down

0 comments on commit db76fd6

Please sign in to comment.