Skip to content

Commit

Permalink
ci: merge separate test workflows into one matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
eginhard committed Mar 11, 2024
1 parent 31a9201 commit 578c853
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 474 deletions.
45 changes: 0 additions & 45 deletions .github/workflows/aux_tests.yml

This file was deleted.

45 changes: 0 additions & 45 deletions .github/workflows/data_tests.yml

This file was deleted.

47 changes: 0 additions & 47 deletions .github/workflows/inference_tests.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: vocoder-tests
name: tests

on:
push:
Expand All @@ -7,17 +7,17 @@ on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
vocoder-tests:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.9, "3.10", "3.11"]
experimental: [false]
subset: ["data_tests", "inference_tests", "test_aux", "test_text", "test_tts", "test_tts2", "test_vocoder", "test_xtts", "test_zoo0", "test_zoo1", "test_zoo2"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: x64
Expand All @@ -27,28 +27,36 @@ jobs:
run: cat /etc/os-release
- name: set ENV
run: export TRAINER_TELEMETRY=0
- name: Install Espeak
if: contains(['inference_tests', 'test_text', 'test_tts', 'test_tts2', 'test_xtts', 'test_zoo0', 'test_zoo1', 'test_zoo2'], matrix.subset)
run: |
sudo apt-get install espeak espeak-ng
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y git make gcc
sudo apt-get install -y --no-install-recommends git make gcc
make system-deps
- name: Install/upgrade Python setup deps
run: python3 -m pip install --upgrade pip setuptools wheel uv
- name: Replace scarf urls
if: contains(['data_tests', 'inference_tests', 'test_aux', 'test_tts', 'test_tts2', 'test_xtts', 'test_zoo0', 'test_zoo1', 'test_zoo2'], matrix.subset)
run: |
sed -i 's/https:\/\/coqui.gateway.scarf.sh\//https:\/\/github.com\/coqui-ai\/TTS\/releases\/download\//g' TTS/.models.json
- name: Install TTS
run: |
python3 -m uv pip install --system "TTS[all] @ ."
python3 setup.py egg_info
- name: Unit tests
run: make test_vocoder
run: make ${{ matrix.subset }}
- name: Upload coverage data
uses: actions/upload-artifact@v4
with:
name: coverage-data-${{ github.job }}-${{ matrix.python-version }}
name: coverage-data-${{ matrix.subset }}-${{ matrix.python-version }}
path: .coverage.*
if-no-files-found: ignore
coverage:
if: always()
needs: vocoder-tests
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
44 changes: 0 additions & 44 deletions .github/workflows/text_tests.yml

This file was deleted.

47 changes: 0 additions & 47 deletions .github/workflows/tts_tests.yml

This file was deleted.

47 changes: 0 additions & 47 deletions .github/workflows/tts_tests2.yml

This file was deleted.

47 changes: 0 additions & 47 deletions .github/workflows/xtts_tests.yml

This file was deleted.

Loading

0 comments on commit 578c853

Please sign in to comment.