Skip to content

Commit

Permalink
Run all tests even if one fails
Browse files Browse the repository at this point in the history
  • Loading branch information
Snicker7 authored Mar 13, 2024
1 parent ee55e3c commit 7077935
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,25 +54,31 @@ jobs:
make basic-test
- name: Run Params
if: success() || failure()
run: |
make params-test
- name: Run Prime Editor
if: success() || failure()
run: |
make prime-editor-test
- name: Run Batch
if: success() || failure()
run: |
make batch-test
- name: Run Pooled
if: success() || failure()
run: |
make pooled-test
- name: Run WGS
if: success() || failure()
run: |
make wgs-test
- name: Run Compare
if: success() || failure()
run: |
make compare-test

0 comments on commit 7077935

Please sign in to comment.