- Ajoute privacy-policy-v1.md et release-compliance-checklist.md - Ajoute documents QA gates #238-#243 - Ajoute scripts de validation repo-only et device runbooks - Prépare checklists exécutables avant upload Play fermé Ticket #261
15 lines
474 B
Bash
Executable File
15 lines
474 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
export HOME=/tmp
|
|
export XDG_CONFIG_HOME=/tmp
|
|
export FLUTTER_SUPPRESS_ANALYTICS=true
|
|
export DART_SUPPRESS_ANALYTICS=true
|
|
|
|
exec ./.ideai/flutter-sdk-1785572580/bin/flutter test \
|
|
test/presentation/profile_screen_test.dart \
|
|
test/presentation/share_inbox_screen_test.dart \
|
|
test/presentation/settings_screen_test.dart \
|
|
test/application/health_connect_use_cases_test.dart \
|
|
test/application/watch_companion_projection_test.dart
|