mirror of https://github.com/coqui-ai/TTS.git
add `test_all` to makefile
This commit is contained in:
parent
30211512a4
commit
b9a52dce9e
4
Makefile
4
Makefile
|
@ -16,6 +16,10 @@ dev-deps: ## install development deps
|
||||||
deps: ## install 🐸 requirements.
|
deps: ## install 🐸 requirements.
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
|
|
||||||
|
test_all: ## run tests and don't stop on an error.
|
||||||
|
nosetests --with-cov -cov --cover-erase --cover-package TTS tests --nologcapture --with-id
|
||||||
|
./run_bash_tests.sh
|
||||||
|
|
||||||
test: ## run tests.
|
test: ## run tests.
|
||||||
nosetests -x --with-cov -cov --cover-erase --cover-package TTS tests --nologcapture --with-id
|
nosetests -x --with-cov -cov --cover-erase --cover-package TTS tests --nologcapture --with-id
|
||||||
./run_bash_tests.sh
|
./run_bash_tests.sh
|
||||||
|
|
Loading…
Reference in New Issue