Skip to content
This repository has been archived by the owner on Sep 26, 2019. It is now read-only.

ignore fast sync and full sync tests to avoid race condition #991

Merged
merged 2 commits into from
Feb 27, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions pantheon/src/test/java/tech/pegasys/pantheon/RunnerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
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;
Expand All @@ -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);
}
Expand Down