File tree 3 files changed +6
-6
lines changed
scripts/gha/integration_testing
gameloop_android/app/src/androidTest/java/com/google/firebase/gameloop
gameloop_apple/gameloopUITests 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -895,7 +895,7 @@ jobs:
895
895
npm install -g firebase-tools
896
896
firebase emulators:start --only firestore --project demo-example &
897
897
- name : Run Android integration tests on Emulator locally
898
- timeout-minutes : 90
898
+ timeout-minutes : 120
899
899
if : steps.get-device-type.outputs.device_type == 'virtual'
900
900
run : |
901
901
python scripts/gha/test_simulator.py --testapp_dir testapps \
@@ -998,7 +998,7 @@ jobs:
998
998
npm install -g firebase-tools
999
999
firebase emulators:start --only firestore --project demo-example &
1000
1000
- name : Run iOS integration tests on Simulator locally
1001
- timeout-minutes : 90
1001
+ timeout-minutes : 120
1002
1002
if : steps.get-device-type.outputs.device_type == 'virtual'
1003
1003
run : |
1004
1004
python scripts/gha/test_simulator.py --testapp_dir testapps \
@@ -1095,7 +1095,7 @@ jobs:
1095
1095
npm install -g firebase-tools
1096
1096
firebase emulators:start --only firestore --project demo-example &
1097
1097
- name : Run tvOS integration tests on Simulator locally
1098
- timeout-minutes : 60
1098
+ timeout-minutes : 90
1099
1099
run : |
1100
1100
python scripts/gha/test_simulator.py --testapp_dir testapps \
1101
1101
--tvos_device "${{ matrix.tvos_device }}" \
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import org.junit.runner.RunWith
21
21
class GameLoopUITest {
22
22
23
23
companion object {
24
- const val GAMELOOP_TIMEOUT = 10 * 60 * 1000L
24
+ const val GAMELOOP_TIMEOUT = 20 * 60 * 1000L
25
25
}
26
26
27
27
private lateinit var device: UiDevice
Original file line number Diff line number Diff line change @@ -101,8 +101,8 @@ class GameLoopLauncherUITests: XCTestCase {
101
101
{
102
102
return timeoutSecs
103
103
} else {
104
- // Default 8 minutes
105
- return TimeInterval ( 8 * 60 )
104
+ // Default 15 minutes
105
+ return TimeInterval ( 15 * 60 )
106
106
}
107
107
}
108
108
}
You can’t perform that action at this time.
0 commit comments