1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
gh-webhook-actor/scripts/test.sh

16 lines
229 B
Bash
Raw Normal View History

2018-10-25 19:55:17 +01:00
#!/usr/bin/env python3
set -e
echo "> Running black"
black --check app/
echo "> Running isort"
isort -rc -c app/
echo "> Running mypy"
mypy --ignore-missing-imports app/
echo "> Running flake8"
flake8 --ignore=E128,E501 app