Skip to content

Commit

Permalink
test with tests-extras first
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Lee <[email protected]>
  • Loading branch information
dave-gray101 committed Sep 15, 2024
1 parent 2fb005d commit 307daca
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/test-extra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -310,3 +310,33 @@ jobs:
run: |
make --jobs=5 --output-sync=target -C backend/python/coqui
make --jobs=5 --output-sync=target -C backend/python/coqui test
report-extra-test-results:
runs-on: ubuntu-latest
if: ${{ always() }}
needs: [tests-transformers, tests-sentencetransformers, tests-rerankers, tests-diffusers, tests-parler-tts, tests-openvoice, tests-transformers-musicgen, tests-vallex, tests-coqui]
steps:
- name: Report Status for coqui
if: needs.tests-coqui.result != 'success'
run: |
echo ${{needs.tests-coqui.outputs}}
exit 1
- name: Report Status for diffusers
if: needs.tests-diffusers.result != 'success'
run: |
echo ${{needs.tests-diffusers.outputs}}
exit 1
- name: Report Status for openvoice
if: needs.tests-openvoice.result != 'success'
run: |
echo ${{needs.tests-openvoice.outputs}}
exit 1
- name: Report Status for parler-tts
if: needs.tests-parler-tts.result != 'success'
run: |
echo ${{needs.tests-parler-tts.outputs}}
exit 1
- name: Report Success
run: |
echo "test-extra successfully completed"
exit 0

0 comments on commit 307daca

Please sign in to comment.