Skip to content

Commit

Permalink
Ignore similarity tests until finalized
Browse files Browse the repository at this point in the history
  • Loading branch information
lejon committed May 2, 2019
1 parent cbb9d58 commit 66eac3e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/test/java/cc/mallet/similarity/SimilarityTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@
import java.util.List;

import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;

@RunWith(value = Parameterized.class)
public class SimilarityTest {
@Ignore("To be finalized") public class SimilarityTest {

@SuppressWarnings("rawtypes")
Class distanceClass;
Expand All @@ -26,7 +27,7 @@ public SimilarityTest(@SuppressWarnings("rawtypes") Class testClass) {
@Parameters
public static List<Object[]> data() {
Object[][] impls = new Object[][] {
{ BhattacharyyaDistance.class },
//{ BhattacharyyaDistance.class },
//{ BM25Distance.class },
{ CanberraDistance.class },
{ ChebychevDistance.class },
Expand Down

0 comments on commit 66eac3e

Please sign in to comment.