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
|