This commit is contained in:
godd0t
2023-05-10 09:02:59 +02:00
commit 8ff2ae26e7
38 changed files with 975 additions and 0 deletions

6
scripts/format.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/bash -e
APP_PATH="src"
black $APP_PATH
ruff $APP_PATH --fix

6
scripts/lint.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/bash -e
APP_PATH="src"
black $APP_PATH --check
ruff $APP_PATH

4
scripts/test.sh Normal file
View File

@@ -0,0 +1,4 @@
#!/bin/bash -e
coverage run -m pytest -v
exit 0