run nosetests with --with-id and add a command to run only the failes

tests
pull/476/head
Eren Gölge 2021-05-10 15:07:42 +02:00
parent f8e52965dd
commit e5d757a9d3
1 changed files with 4 additions and 1 deletions

View File

@ -18,9 +18,12 @@ deps: ## install 🐸 requirements.
pip install -r requirements.txt
test: ## run tests.
nosetests -x --with-cov -cov --cover-erase --cover-package TTS tests --nologcapture
nosetests -x --with-cov -cov --cover-erase --cover-package TTS tests --nologcapture --with-id
./run_bash_tests.sh
test_failed: ## only run tests failed the last time.
nosetests -x --with-cov -cov --cover-erase --cover-package TTS tests --nologcapture --failed
style: ## update code style.
black ${target_dirs}
isort ${target_dirs}