From 99872305080815c4fcb1bd629c8b628366e5ed3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eren=20G=C3=B6lge?= Date: Fri, 9 Apr 2021 03:09:24 +0200 Subject: [PATCH] add bash tests and linux system requirements to Makefile --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index d969dab2..2086774b 100644 --- a/Makefile +++ b/Makefile @@ -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}