v1.0 - Version stable: multi-PC, détection UI-DETR-1, 3 modes exécution
- Frontend v4 accessible sur réseau local (192.168.1.40) - Ports ouverts: 3002 (frontend), 5001 (backend), 5004 (dashboard) - Ollama GPU fonctionnel - Self-healing interactif - Dashboard confiance Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
28
test_corrections.sh
Executable file
28
test_corrections.sh
Executable file
@@ -0,0 +1,28 @@
|
||||
#!/bin/bash
|
||||
# Script de test des corrections de bugs
|
||||
|
||||
set -e
|
||||
|
||||
GREEN='\033[0;32m'
|
||||
RED='\033[0;31m'
|
||||
YELLOW='\033[1;33m'
|
||||
BLUE='\033[0;34m'
|
||||
NC='\033[0m'
|
||||
|
||||
echo -e "${BLUE}"
|
||||
echo "╔════════════════════════════════════════════════════════════╗"
|
||||
echo "║ Test des Corrections - RPA Vision V3 ║"
|
||||
echo "╚════════════════════════════════════════════════════════════╝"
|
||||
echo -e "${NC}"
|
||||
|
||||
# Test 1: Vérifier que le fichier orchestrator.py a été modifié
|
||||
echo -e "${BLUE}[1/3]${NC} Vérification de la correction orchestrator.py..."
|
||||
if grep -q "tempfile.NamedTemporaryFile" rpa_vision_v3/gui/orchestrator.py; then
|
||||
echo -e "${GREEN}✓${NC} Correction appliquée"
|
||||
else
|
||||
echo -e "${RED}✗${NC} Correction non trouvée"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo ""
|
||||
echo -e "${GREEN}✓ Tests terminés${NC}"
|
||||
Reference in New Issue
Block a user