5 lines
139 B
Bash
Executable file
5 lines
139 B
Bash
Executable file
#!/bin/sh
|
|
set -euxo pipefail
|
|
TESTING=true python -m pytest
|
|
pre-commit run --all-files
|
|
TESTING=true python manage.py makemigrations --check
|