Temporarily disable tests that started failing post-maven

Joel is working on these failures in a separate branch. Since
maven (currently! we're working on this..) won't run the whole
test suite to completion if there's a failure early on, we need
to temporarily disable these tests in order to allow group members
to run tests on their branches again.
This commit is contained in:
David Roazen 2014-02-04 15:31:24 -05:00
parent 3b2f07990d
commit 76086f30b7
4 changed files with 4 additions and 4 deletions

View File

@ -109,7 +109,7 @@ public class VariantRecalibrationWalkersIntegrationTest extends WalkerTest {
return new Object[][]{ {lowPassPlusExomes} };
}
@Test(dataProvider = "VRTest")
@Test(dataProvider = "VRTest", enabled = false)
public void testVariantRecalibrator(VRTest params) {
//System.out.printf("PARAMS FOR %s is %s%n", vcf, clusterFile);
WalkerTest.WalkerTestSpec spec = new WalkerTest.WalkerTestSpec(

View File

@ -71,7 +71,7 @@ public class RecalibrationReportUnitTest {
return new RecalDatum((long)nObservations, (double)nErrors, (byte)qual);
}
@Test(enabled = true)
@Test(enabled = false)
public void testOutput() {
final int length = 100;

View File

@ -136,7 +136,7 @@ public class RepeatCovariatesUnitTest {
* Build synthetic reads with random content made up of tandem repeats, record computed Repeat Unit and # repeats and see if
* they match with read context
*/
@Test(enabled = true)
@Test(enabled = false)
public void testManyObservations() {
final int NUM_UNITS = 10;
final int MAX_REPEAT_UNIT_LENGTH = RAC.MAX_STR_UNIT_LENGTH;

View File

@ -43,7 +43,7 @@ public class MWUnitTest extends BaseTest {
@BeforeClass
public void init() { }
@Test
@Test(enabled = false)
private void testMWU() {
logger.warn("Testing MWU");
MannWhitneyU mwu = new MannWhitneyU();