Add Tests

This commit is contained in:
2022-07-12 07:20:54 -07:00
parent daadf7d4b4
commit 4102eecd22
10 changed files with 473 additions and 41 deletions

View File

@@ -30,4 +30,15 @@ serve :
shell :
poetry run flask shell
.PHONY : lint shell serve
test :
poetry run python -m pytest tests
test-x :
poetry run python -m pytest tests -x
test-wip :
poetry run python -m pytest tests -m wip
.PHONY : db-init db-migrate db-upgrad db-downgrade \
lint shell serve \
test test-wip test-x