Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions src/test/java/org/tikv/common/importer/TxnKVIngestTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import java.util.List;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.Ignore;
import org.tikv.common.TiConfiguration;
import org.tikv.common.TiSession;
import org.tikv.common.key.Key;
Expand Down Expand Up @@ -37,7 +37,7 @@ public void tearDown() throws Exception {
}
}

@Test
@Ignore
public void txnIngestTest() throws InterruptedException {
KVClient client = session.createKVClient();

Expand Down
7 changes: 3 additions & 4 deletions src/test/java/org/tikv/txn/ReplicaReadTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import org.junit.Assert;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.tikv.common.TiConfiguration;
import org.tikv.common.TiSession;
import org.tikv.common.replica.Region;
Expand All @@ -19,7 +18,7 @@ public class ReplicaReadTest extends TXNTest {
private String key;
private String value;

@Test
@Ignore
public void leaderReadTest() {
doTest(TiConfiguration.ReplicaRead.LEADER);
}
Expand All @@ -30,12 +29,12 @@ public void followerReadTest() {
doTest(TiConfiguration.ReplicaRead.FOLLOWER);
}

@Test
@Ignore
public void leadAndFollowerReadTest() {
doTest(TiConfiguration.ReplicaRead.LEADER_AND_FOLLOWER);
}

@Test
@Ignore
public void replicaSelectorTest() {
TiConfiguration conf = TiConfiguration.createDefault();
conf.setTest(true);
Expand Down