Skip to content

Commit

Permalink
workaround: disable TxnKV test because of #270
Browse files Browse the repository at this point in the history
Signed-off-by: marsishandsome <marsishandsome@gmail.com>
  • Loading branch information
marsishandsome committed Sep 2, 2021
1 parent 6a82620 commit 254273a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/test/java/org/tikv/common/importer/TxnKVIngestTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import java.util.List;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.tikv.common.TiConfiguration;
import org.tikv.common.TiSession;
Expand Down Expand Up @@ -37,7 +38,7 @@ public void tearDown() throws Exception {
}
}

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

Expand Down
6 changes: 3 additions & 3 deletions src/test/java/org/tikv/txn/ReplicaReadTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,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 +30,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

0 comments on commit 254273a

Please sign in to comment.