Files
bracket/backend/precommit.sh
2024-02-03 14:29:33 +01:00

10 lines
255 B
Bash
Executable File

#!/bin/bash
set -evo pipefail
ruff format .
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