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>
This commit is contained in:
2025-06-06 15:47:00 +05:30
parent 81abe4ff64
commit 203ae14b06
2 changed files with 2 additions and 1 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

@ -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