mirror of
https://github.com/evroon/bracket.git
synced 2025-12-30 09:38:26 -05:00
Allows you to add rankings that specify how the ranking per stage item is calculated. Points are now stored per stage item input.
10 lines
260 B
Bash
Executable File
10 lines
260 B
Bash
Executable File
#!/bin/bash
|
|
set -evo pipefail
|
|
|
|
ruff format .
|
|
ruff check --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 cli.py bracket tests
|