Files
unionflow-server-api/unionflow/unionflow-mobile-apps/test_app.bat
dahoud b1957c1c81 feat(unionflow): ajout Spec-Kit, constitution, mission mutuelles
- Config Spec-Kit pour Spec-Driven Development
- CONSTITUTION.md + .specify/memory/constitution.md
- Commandes Cursor /speckit.*, règles projet
- Mission: associations + mutuelles d'épargne et de financement
- .gitignore: versionner config spec-kit unionflow

Made-with: Cursor
2026-02-27 14:41:07 +00:00

38 lines
982 B
Batchfile

@echo off
echo ========================================
echo UNIONFLOW - TEST DE L'APPLICATION
echo ========================================
echo.
echo [1/3] Analyse du code Flutter...
flutter analyze --no-fatal-infos > analysis_result.txt 2>&1
if %ERRORLEVEL% EQU 0 (
echo ✅ Analyse terminée avec succès
) else (
echo ❌ Erreurs détectées dans l'analyse
)
echo.
echo [2/3] Compilation de l'application...
flutter build apk --debug > build_result.txt 2>&1
if %ERRORLEVEL% EQU 0 (
echo ✅ Compilation réussie
) else (
echo ❌ Erreurs de compilation détectées
)
echo.
echo [3/3] Affichage des résultats...
echo.
echo === RÉSULTATS DE L'ANALYSE ===
type analysis_result.txt | findstr /C:"error" /C:"issues found"
echo.
echo === RÉSULTATS DE LA COMPILATION ===
type build_result.txt | findstr /C:"error" /C:"Built" /C:"FAILURE"
echo.
echo ========================================
echo TEST TERMINÉ
echo ========================================
pause