Skip to content

Commit 307daca

Browse files
committed
test with tests-extras first
Signed-off-by: Dave Lee <[email protected]>
1 parent 2fb005d commit 307daca

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/test-extra.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -310,3 +310,33 @@ jobs:
310310
run: |
311311
make --jobs=5 --output-sync=target -C backend/python/coqui
312312
make --jobs=5 --output-sync=target -C backend/python/coqui test
313+
314+
report-extra-test-results:
315+
runs-on: ubuntu-latest
316+
if: ${{ always() }}
317+
needs: [tests-transformers, tests-sentencetransformers, tests-rerankers, tests-diffusers, tests-parler-tts, tests-openvoice, tests-transformers-musicgen, tests-vallex, tests-coqui]
318+
steps:
319+
- name: Report Status for coqui
320+
if: needs.tests-coqui.result != 'success'
321+
run: |
322+
echo ${{needs.tests-coqui.outputs}}
323+
exit 1
324+
- name: Report Status for diffusers
325+
if: needs.tests-diffusers.result != 'success'
326+
run: |
327+
echo ${{needs.tests-diffusers.outputs}}
328+
exit 1
329+
- name: Report Status for openvoice
330+
if: needs.tests-openvoice.result != 'success'
331+
run: |
332+
echo ${{needs.tests-openvoice.outputs}}
333+
exit 1
334+
- name: Report Status for parler-tts
335+
if: needs.tests-parler-tts.result != 'success'
336+
run: |
337+
echo ${{needs.tests-parler-tts.outputs}}
338+
exit 1
339+
- name: Report Success
340+
run: |
341+
echo "test-extra successfully completed"
342+
exit 0

0 commit comments

Comments
 (0)