From 3646407227899f9982a6064791971ca75cbb285d Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Fri, 21 Dec 2018 13:03:11 +0000 Subject: [PATCH] Print running test steps --- scripts/test.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scripts/test.sh b/scripts/test.sh index 33b9567..8c8a52e 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -4,9 +4,17 @@ set -e export PATH=env/bin:${PATH} +echo "> Running tests..." nose2 $@ -C --coverage catfish --verbose --coverage-report term --coverage-report html +echo "> Running formatter..." black catfish tests setup.py --check + +echo "> Running linter..." flake8 catfish tests setup.py --ignore=E128,E501 + +echo "> Running isort..." isort -rc -c catfish tests setup.py + +echo "> Running type checker..." mypy --strict-optional --ignore-missing-imports catfish