2 Commits

Author SHA1 Message Date
203ae14b06 fix: update pytest command to use auto for parallel execution
feat: add loguru dependency for enhanced logging capabilities

Signed-off-by: varun-r-mallya <varunrmallya@gmail.com>
2025-06-06 15:47:00 +05:30
81abe4ff64 fix: correct syntax error in interop dependencies list
Signed-off-by: varun-r-mallya <varunrmallya@gmail.com>
2025-06-06 15:32:42 +05:30
2 changed files with 3 additions and 2 deletions

View File

@ -38,7 +38,7 @@ lint:
) )
test: test:
python -m pytest tests python -m pytest tests -n auto
# protobufs management # protobufs management

View File

@ -37,7 +37,7 @@ extras_require = {
"pytest-trio>=0.5.2", "pytest-trio>=0.5.2",
"factory-boy>=2.12.0,<3.0.0", "factory-boy>=2.12.0,<3.0.0",
], ],
"interop": ["redis==6.1.0", "logging==0.4.9.6" "loguru==0.7.3"], "interop": ["redis==6.1.0", "logging==0.4.9.6", "loguru==0.7.3"],
} }
extras_require["dev"] = ( extras_require["dev"] = (
@ -69,6 +69,7 @@ install_requires = [
"rpcudp>=3.0.0", "rpcudp>=3.0.0",
"trio-typing>=0.0.4", "trio-typing>=0.0.4",
"trio>=0.26.0", "trio>=0.26.0",
"loguru>=0.7.3",
] ]
# Add platform-specific dependencies # Add platform-specific dependencies