From f95cb15033c40fd668cda5746e4385cc79110c30 Mon Sep 17 00:00:00 2001 From: Sally MacFarlane Date: Wed, 27 Feb 2019 10:32:03 +1000 Subject: [PATCH] ignore tests (#991) Signed-off-by: Adrian Sutton --- pantheon/src/test/java/tech/pegasys/pantheon/RunnerTest.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pantheon/src/test/java/tech/pegasys/pantheon/RunnerTest.java b/pantheon/src/test/java/tech/pegasys/pantheon/RunnerTest.java index aadfeddd93..24f4cf435f 100644 --- a/pantheon/src/test/java/tech/pegasys/pantheon/RunnerTest.java +++ b/pantheon/src/test/java/tech/pegasys/pantheon/RunnerTest.java @@ -67,6 +67,7 @@ import okhttp3.RequestBody; import okhttp3.Response; import org.assertj.core.api.Assertions; import org.awaitility.Awaitility; +import org.junit.Ignore; import org.junit.Rule; import org.junit.Test; import org.junit.rules.TemporaryFolder; @@ -77,11 +78,13 @@ public final class RunnerTest { @Rule public final TemporaryFolder temp = new TemporaryFolder(); @Test + @Ignore public void fullSyncFromGenesis() throws Exception { syncFromGenesis(SyncMode.FULL); } @Test + @Ignore public void fastSyncFromGenesis() throws Exception { syncFromGenesis(SyncMode.FAST); }