add test
This commit is contained in:
parent
1db1a9c1a2
commit
0ac34b55a9
|
|
@ -30,3 +30,5 @@
|
|||
2022-12-06 11:41:04 | MainThread:4542244288 | <module>:__init__:22 - INFO - loading environment configuration file
|
||||
2022-12-06 11:42:06 | MainThread:4445275584 | <module>:__init__:16 - INFO - start the automation service development environment
|
||||
2022-12-06 11:42:06 | MainThread:4445275584 | <module>:__init__:22 - INFO - loading environment configuration file
|
||||
2022-12-06 11:43:19 | MainThread:4579554752 | <module>:__init__:16 - INFO - start the automation service development environment
|
||||
2022-12-06 11:43:19 | MainThread:4579554752 | <module>:__init__:22 - INFO - loading environment configuration file
|
||||
|
|
|
|||
|
|
@ -301,6 +301,18 @@ email = ["email-validator (>=1.0.3)"]
|
|||
[package.dependencies]
|
||||
typing-extensions = ">=3.7.4.3"
|
||||
|
||||
[[package]]
|
||||
name = "pymysql"
|
||||
version = "1.0.2"
|
||||
description = "Pure Python MySQL Driver"
|
||||
category = "main"
|
||||
optional = false
|
||||
python-versions = ">=3.6"
|
||||
|
||||
[package.extras]
|
||||
ed25519 = ["PyNaCl (>=1.4.0)"]
|
||||
rsa = ["cryptography"]
|
||||
|
||||
[[package]]
|
||||
name = "python-jose"
|
||||
version = "3.3.0"
|
||||
|
|
@ -467,7 +479,7 @@ testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-
|
|||
[metadata]
|
||||
lock-version = "1.0"
|
||||
python-versions = "^3.8"
|
||||
content-hash = "4d582962f9402598c4b23e21eec4e8a759cbbb1be4de852d0fa0b2ecb769641e"
|
||||
content-hash = "8794535d24ebad73e835607da66b71aa3340f87d4acaa68844549c8265c6003a"
|
||||
|
||||
[metadata.files]
|
||||
alembic = []
|
||||
|
|
@ -722,6 +734,10 @@ pydantic = [
|
|||
{file = "pydantic-1.9.1-py3-none-any.whl", hash = "sha256:4988c0f13c42bfa9ddd2fe2f569c9d54646ce84adc5de84228cfe83396f3bd58"},
|
||||
{file = "pydantic-1.9.1.tar.gz", hash = "sha256:1ed987c3ff29fff7fd8c3ea3a3ea877ad310aae2ef9889a119e22d3f2db0691a"},
|
||||
]
|
||||
pymysql = [
|
||||
{file = "PyMySQL-1.0.2-py3-none-any.whl", hash = "sha256:41fc3a0c5013d5f039639442321185532e3e2c8924687abe6537de157d403641"},
|
||||
{file = "PyMySQL-1.0.2.tar.gz", hash = "sha256:816927a350f38d56072aeca5dfb10221fe1dc653745853d30a216637f5d7ad36"},
|
||||
]
|
||||
python-jose = [
|
||||
{file = "python-jose-3.3.0.tar.gz", hash = "sha256:55779b5e6ad599c6336191246e95eb2293a9ddebd555f796a65f838f07e5d78a"},
|
||||
{file = "python_jose-3.3.0-py2.py3-none-any.whl", hash = "sha256:9b1376b023f8b298536eedd47ae1089bcdb848f1535ab30555cd92002d78923a"},
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@ pyyaml = "^6.0"
|
|||
python-jose = "^3.3.0"
|
||||
passlib = "^1.7.4"
|
||||
email_validator = "^1.3.0"
|
||||
pymysql = "^1.0.2"
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue