Anna Sirota
3203672a5d
Part of infrastructure/webdev-internal#22 Reviewed-on: #93019 Reviewed-by: Oleg-Komarov <oleg-komarov@noreply.localhost>
8 lines
164 B
Bash
Executable File
8 lines
164 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -eux
|
|
|
|
PYTHONPATH=. mypy --show-error-codes .
|
|
black --check .
|
|
flake8 --select ISC001 looper looper_example_project
|
|
./manage.py test --parallel
|