Add server test

This commit is contained in:
2022-01-13 03:13:04 +00:00
parent fd5fc0a85d
commit db218cb8c2
2 changed files with 22 additions and 1 deletions

View File

@@ -24,5 +24,5 @@ mypy = "*"
python_version = "3.9"
[scripts]
test = "pytest app/test/test_main.py -s"
test = "pytest app/test/test_auth.py app/test/test_server.py -W ignore::DeprecationWarning -s"
dev = "uvicorn app.main:app --reload"