Files
bracket/backend/precommit.sh
2023-10-07 17:02:05 +02:00

9 lines
185 B
Bash
Executable File

#!/bin/bash
set -evo pipefail
black .
ruff --fix .
dmypy run -- --follow-imports=normal --junit-xml= .
ENVIRONMENT=CI pytest --cov --cov-report=xml . -vvv
pylint alembic bracket tests