Skip to content

Commit

Permalink
Updated dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
aanorbel committed Oct 12, 2023
1 parent f0567b8 commit 4978665
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ dependencies {
testImplementation 'org.mockito:mockito-inline:4.6.1'
testImplementation 'org.robolectric:robolectric:4.10.3'
testImplementation 'com.github.blocoio:faker:1.2.8'
testImplementation 'org.ooni:oonimkall:2023.10.10-165336'
testImplementation 'org.ooni:oonimkall:2023.10.11-213148'
testAnnotationProcessor 'com.google.dagger:dagger-compiler:2.36'

// Instrumentation Testing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import org.openobservatory.ooniprobe.common.PreferenceManager;
import org.openobservatory.ooniprobe.test.test.AbstractTest;
import org.openobservatory.ooniprobe.test.test.Psiphon;
import org.openobservatory.ooniprobe.test.test.RiseupVPN;
import org.openobservatory.ooniprobe.test.test.Tor;

import java.util.ArrayList;
Expand Down Expand Up @@ -43,11 +44,8 @@ public static CircumventionSuite initForAutoRun() {
list.add(new Psiphon());
if (pm == null || pm.isTestTor())
list.add(new Tor());
/* TODO (aanorbel): Riseup VPN Disabled.
The riseupvpn experiment has been quite flaky for quite some time.
To be enabled only when test is fixed or removed if deemed necessary.
if (pm == null || pm.isTestRiseupVPN())
list.add(new RiseupVPN());*/
if (pm == null || pm.isTestRiseupVPN())
list.add(new RiseupVPN());
super.setTestList(Lists.transform(list, test -> {
if (getAutoRun()) test.setOrigin(AbstractTest.AUTORUN);
return test;
Expand Down
4 changes: 2 additions & 2 deletions engine/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ android {
dependencies {
// For the stable and dev app flavours we're using the library
// build published at Maven Central.
stableImplementation 'org.ooni:oonimkall:2023.10.10-165336'
devImplementation 'org.ooni:oonimkall:2023.10.10-165336'
stableImplementation 'org.ooni:oonimkall:2023.10.11-213148'
devImplementation 'org.ooni:oonimkall:2023.10.11-213148'

// For the experimental flavour, you need to compile your own
// oonimkall.aar and put it into the ../engine-experimental dir
Expand Down

0 comments on commit 4978665

Please sign in to comment.