Reid Baker
Reid Baker
Current plan is to debug by getting gcloud installed and trying to run `gcloud firebase test android run --type instrumentation --app build/app/outputs/apk/debug/app-debug.apk --test build/app/outputs/apk/androidTest/debug/app-debug-androidTest.apk --timeout 7m --results-bucket=gs://flutter_cirrus_testlab --results-dir=plugins_android_test/espresso/5839641094389760/d8d95d2c-8a7f-443d-886d-9b9aae3a2670/example/0/ --device model=redfin,version=30...
local setup ``` // Build apk packages/espresso/example flutter build apk // Build Test packages/espresso/example/android ./gradlew app:test ``` My version of the command. `gcloud firebase test android run --type instrumentation --app...
Unable to use gcloud to trigger builds normal google accounts are not authorized to run/modify/create projects or use existing ones. From flutter-infra chatroom the suggestion is to use led. https://g3doc.corp.google.com/company/teams/flutter/infrastructure/playbook.md?cl=head#testing-repo-changes-with-led...
Running tests with `flutter drive --driver test_driver/integration_test.dart --target integration_test/espresso_launch_test.dart` and `flutter test integration_test/espresso_launch_test.dart` pass locally.
I think I can reproduce the hanging test by running `/gradlew app:connectedAndroidTest -Ptarget=`pwd`/../integration_test/espresso_launch_test.dart` from the example directory
I have been able to show that if I modify expresso_launch_test to have `expect(false, isTrue);` we still get stuck waiting for the test to timeout leading me to believe that...
It seems like I am getting the same behavior as these people but non of those solutions seem to work for me https://stackoverflow.com/questions/65412897/new-integration-test-package-just-shows-test-starting-android
Also similar to this issue https://github.com/flutter/flutter/issues/86173
@goderbauer Do you have any suggestions for what else I can try? (pinged because it seems you are a semi frequent contributor) Specifically I am trying to understand why locally...
> It may be useful to compare with a PR like [flutter/plugins#4200](https://github.com/flutter/plugins/pull/4200) that set up initial integration tests for some of our other plugins. It's getting to be a while...