Add dev check command

This commit is contained in:
Andreas Zweili 2023-09-26 21:25:09 +02:00
parent 9e18d8e6fe
commit bfb78ae3cb
1 changed files with 7 additions and 0 deletions

7
dev.sh
View File

@ -142,6 +142,13 @@ test() {
descriptions["test"]="Run the tests in the RAM DB and write a coverage report."
tasks["test"]=test
check() {
lint
test
}
descriptions["check"]="Run lint and test in one session"
tasks["check"]=check
update() {
poetry update
}