Print running test steps
This commit is contained in:
parent
84bc0bbbd9
commit
3646407227
1 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
|
|
Reference in a new issue