mirror of
https://github.com/evroon/bracket.git
synced 2026-01-08 06:00:18 -05:00
9 lines
175 B
Bash
Executable File
9 lines
175 B
Bash
Executable File
#!/bin/bash
|
|
set -evo pipefail
|
|
|
|
black .
|
|
dmypy run -- --follow-imports=normal --junit-xml= .
|
|
ENVIRONMENT=CI pytest --cov --cov-report=xml .
|
|
pylint alembic bracket tests
|
|
isort .
|