Files
bracket/backend/precommit.sh
2023-11-02 20:34:49 +01:00

10 lines
249 B
Bash
Executable File

#!/bin/bash
set -evo pipefail
black .
ruff --fix .
! vulture | grep "unused function\|unused class\|unused method"
dmypy run -- --follow-imports=normal --junit-xml= .
ENVIRONMENT=CI pytest --cov --cov-report=xml . -vvv
pylint alembic bracket tests