1
0
Fork 0
decli/scripts/test
Daniel Baumann 271f3e2863
Adding upstream version 0.6.2.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-04-21 10:59:46 +02:00

10 lines
219 B
Bash
Executable file

#!/bin/sh -e
pr() {
poetry run python -m "$@"
}
pr pytest --cov-report term-missing --cov-report=xml:coverage.xml --cov=decli "${1:-tests}"
pr black decli tests --check
pr ruff decli/ tests/
pr mypy decli/ tests/