SIENTIAPDE-1243: Add Temporal namespace setup guide to README and improve validation script.

This commit is contained in:
Bruno Domingues
2025-10-02 10:08:02 -03:00
parent 8f4ac3284e
commit 9a1355fe9b
3 changed files with 109 additions and 3 deletions

View File

@@ -67,7 +67,7 @@ if ! run_step "4. Security Analysis (Bandit)" "bandit -r model_manager/ -ll -q";
fi
# Step 5: Unit Tests (pytest)
if ! run_step "5. Unit Tests (pytest)" "pytest tests/ --cov=model_manager --cov-report=term-missing --cov-fail-under=70 -q"; then
if ! run_step "5. Unit Tests (pytest)" "pytest tests/ --cov=model_manager --cov-report=term-missing --cov-fail-under=80 -q"; then
FAILED_STEPS+=("Unit Tests")
fi