Merge branch 'fix-screenshot-tests' into 'master'

Fix screenshot tests

See merge request briar/briar!1514
This commit is contained in:
akwizgran
2021-07-28 12:37:53 +00:00
2 changed files with 3 additions and 1 deletions

View File

@@ -33,7 +33,7 @@ test:
stage: test
script:
- ./gradlew --no-daemon -Djava.security.egd=file:/dev/urandom animalSnifferMain animalSnifferTest
- ./gradlew --no-daemon -Djava.security.egd=file:/dev/urandom check
- ./gradlew --no-daemon -Djava.security.egd=file:/dev/urandom compileOfficialDebugAndroidTestSources compileScreenshotDebugAndroidTestSources check
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
when: always

View File

@@ -3,6 +3,7 @@ package org.briarproject.briar.android;
import org.briarproject.bramble.BrambleAndroidModule;
import org.briarproject.bramble.BrambleCoreModule;
import org.briarproject.bramble.account.BriarAccountModule;
import org.briarproject.bramble.plugin.file.RemovableDriveModule;
import org.briarproject.bramble.system.ClockModule;
import org.briarproject.briar.BriarCoreModule;
import org.briarproject.briar.android.attachment.AttachmentModule;
@@ -20,6 +21,7 @@ import dagger.Component;
AttachmentModule.class,
ClockModule.class,
MediaModule.class,
RemovableDriveModule.class,
BriarCoreModule.class,
BrambleAndroidModule.class,
BriarAccountModule.class,