add bash tests and linux system requirements to Makefile

pull/423/head
Eren Gölge 2021-04-09 03:09:24 +02:00
parent 5fd2333c91
commit 9987230508
1 changed files with 5 additions and 0 deletions

View File

@ -6,11 +6,16 @@ help:
target_dirs := tests TTS notebooks
system-deps: ## install linux system deps
sudo apt-get install espeak-ng
sudo apt-get install sndfilelib1-dev
deps: ## install 🐸 requirements.
pip install -r requirements.txt
test: ## run tests.
nosetests --with-cov -cov --cover-erase --cover-package TTS tests
./run_bash_tests.sh
style: ## update code style.
black ${target_dirs}