diff --git a/dev.sh b/dev.sh index bfd078d..71a80c1 100755 --- a/dev.sh +++ b/dev.sh @@ -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 }