diff options
Diffstat (limited to 'dev.sh')
-rwxr-xr-x | dev.sh | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -8,10 +8,11 @@ Usage: $0 <command> Commands: dev Install developement envoronment +run Run the app in developement environment pytest Run pytest unittests pylint Do pylint covhtml Make branch coverage report in html format -covff Open html coverage report in firefox +covff Genarate and open html coverage report in firefox all Do it all: pytest, coverage report in firefox and pylint install Build poetry package and install it for current user " && exit 0 @@ -48,6 +49,10 @@ case $1 in && $0 poetry-dev-deps ;; + run) + DEBUG=1 poetry run python3 src/sliceitoff + ;; + pytest) poetry run pytest -v ;; |