Skip to content

Commit

Permalink
Merge pull request #590 from EveryVoiceTTS/dev.ej/326
Browse files Browse the repository at this point in the history
Several improvements to wav2vec2aligner system: early errors, testing, py 3.8 compatibility, etc
  • Loading branch information
joanise authored Nov 22, 2024
2 parents e359342 + 727e4f3 commit 50b30dc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
python-version: "3.10"
miniforge-version: latest
conda-remove-defaults: true
- uses: FedericoCarboni/setup-ffmpeg@v2
- name: Install sox and use conda to optimize other installs
run: |
conda install -y sox $(grep "pycountry\|pyworld" requirements.txt) -c conda-forge
Expand Down
4 changes: 3 additions & 1 deletion everyvoice/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

SUBMODULE_SUITES: dict[str, tuple[str, ...]] = {
"fs2": ("/model/feature_prediction/FastSpeech2_lightning/fs2/tests",),
"wav2vec2aligner": ("/model/aligner/wav2vec2aligner/aligner/tests",),
}
SUITES: dict[str, tuple[str, ...]] = {
"config": ("test_configs",),
Expand All @@ -34,8 +35,9 @@
"preprocessing",
"model",
"cli",
"fs2",
"evaluation",
"fs2",
"wav2vec2aligner",
)
SUITES["dev"] = sum((SUITES[suite] for suite in dev_suites), start=())

Expand Down

0 comments on commit 50b30dc

Please sign in to comment.