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