From 120ea679f9acaf769818e24a945eae27ef07ca6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eren=20G=C3=B6lge?= Date: Tue, 1 Jun 2021 10:48:13 +0200 Subject: [PATCH] add `test_all` to makefile --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 4dc2d588..70b7e34a 100644 --- a/Makefile +++ b/Makefile @@ -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