ignore tests (#991)

Signed-off-by: Adrian Sutton <adrian.sutton@consensys.net>
pull/2/head
Sally MacFarlane 6 years ago committed by GitHub
parent 5da4fac02f
commit f95cb15033
  1. 3
      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);
}

Loading…
Cancel
Save