Skip to content

Commit

Permalink
Merge pull request #14453 from nextcloud/failOnServerFail
Browse files Browse the repository at this point in the history
do not continue when server fails
  • Loading branch information
tobiasKaminsky authored Jan 23, 2025
2 parents 11e4d2b + 56f3b2d commit 890464a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions app/src/main/java/com/owncloud/android/MainApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ public class MainApp extends Application implements HasAndroidInjector, NetworkC
private static boolean mOnlyOnDevice;
private static boolean mOnlyPersonalFiles;


@Inject
protected AppPreferences preferences;

Expand Down
4 changes: 2 additions & 2 deletions scripts/runCombinedTest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ scripts/deleteOldComments.sh "master" "IT" "$DRONE_PULL_REQUEST"

./gradlew assembleGplayDebugAndroidTest

scripts/wait_for_emulator.sh
scripts/wait_for_emulator.sh || exit 1

./gradlew installGplayDebugAndroidTest
scripts/wait_for_server.sh "server"
scripts/wait_for_server.sh "server" || exit 1

# clear logcat and start saving it to file
adb logcat -c
Expand Down

0 comments on commit 890464a

Please sign in to comment.