archive
/
catfish
Archived
1
Fork 0

Print running test steps

This commit is contained in:
Jake Howard 2018-12-21 13:03:11 +00:00
parent 84bc0bbbd9
commit 3646407227
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 8 additions and 0 deletions

View File

@ -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