mirror of https://github.com/coqui-ai/TTS.git
70 lines
2.0 KiB
YAML
70 lines
2.0 KiB
YAML
name: vocoder-tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
jobs:
|
|
vocoder-tests:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python-version: [3.9, "3.10", "3.11"]
|
|
experimental: [false]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
architecture: x64
|
|
cache: 'pip'
|
|
cache-dependency-path: 'requirements*'
|
|
- name: check OS
|
|
run: cat /etc/os-release
|
|
- name: set ENV
|
|
run: export TRAINER_TELEMETRY=0
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y git make gcc
|
|
make system-deps
|
|
- name: Install/upgrade Python setup deps
|
|
run: python3 -m pip install --upgrade pip setuptools wheel uv
|
|
- name: Install TTS
|
|
run: |
|
|
python3 -m uv pip install --system "TTS[all] @ ."
|
|
python3 setup.py egg_info
|
|
- name: Unit tests
|
|
run: make test_vocoder
|
|
- name: Upload coverage data
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: coverage-data-${{ github.job }}-${{ matrix.python-version }}
|
|
path: .coverage.*
|
|
if-no-files-found: ignore
|
|
coverage:
|
|
if: always()
|
|
needs: vocoder-tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.11"
|
|
- uses: actions/download-artifact@v4
|
|
with:
|
|
pattern: coverage-data-*
|
|
merge-multiple: true
|
|
- name: Combine coverage
|
|
run: |
|
|
python -Im pip install --upgrade coverage[toml]
|
|
|
|
python -Im coverage combine
|
|
python -Im coverage html --skip-covered --skip-empty
|
|
|
|
python -Im coverage report --format=markdown >> $GITHUB_STEP_SUMMARY
|