From 808da15e7d50fd014687664c7664b989405a9d85 Mon Sep 17 00:00:00 2001 From: erogol Date: Tue, 2 Jun 2020 17:28:52 +0200 Subject: [PATCH] update travis script --- .travis/script | 4 +++- requirements_tests.txt | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis/script b/.travis/script index ca6f4cd3..278ba4f2 100755 --- a/.travis/script +++ b/.travis/script @@ -12,7 +12,9 @@ fi if [[ "$TEST_SUITE" == "unittest" ]]; then # Run tests on all pushes pushd tts_namespace - python -m unittest + nosetests speaker_encoder.tests --nocapture + nosetests vocoder.tests --nocapture + nosetests tests --nocapture popd # Test server package ./tests/test_server_package.sh diff --git a/requirements_tests.txt b/requirements_tests.txt index 1e0615b2..243aa3a6 100644 --- a/requirements_tests.txt +++ b/requirements_tests.txt @@ -13,3 +13,4 @@ tqdm soundfile phonemizer bokeh==1.4.0 +nose