add `test_all` to makefile

pull/602/head
Eren Gölge 2021-06-01 10:48:13 +02:00
parent e229f5c081
commit 120ea679f9
1 changed files with 4 additions and 0 deletions

View File

@ -16,6 +16,10 @@ dev-deps: ## install development deps
deps: ## install 🐸 requirements.
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.
nosetests -x --with-cov -cov --cover-erase --cover-package TTS tests --nologcapture --with-id
./run_bash_tests.sh