Skip to content

Commit

Permalink
More test disabling.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmnbroad committed Nov 19, 2024
1 parent 421f9f5 commit 008cebd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/test/java/htsjdk/samtools/cram/RANSInteropTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ public Object[][] getDecodeOnlyTestCases() throws IOException {

@Test (
dataProvider = "roundTripTestCases",
enabled = false,
description = "Roundtrip using htsjdk RANS. Compare the output with the original file" )
public void testRANSRoundTrip(
final Path uncompressedFilePath,
Expand Down Expand Up @@ -175,6 +176,7 @@ public void testRANSRoundTrip(

@Test (
dataProvider = "decodeOnlyTestCases",
enabled = false,
description = "Uncompress the existing compressed file using htsjdk RANS and compare it with the original file.")
public void testDecodeOnly(
final Path compressedFilePath,
Expand Down
2 changes: 2 additions & 0 deletions src/test/java/htsjdk/samtools/cram/RangeInteropTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ public Object[][] getDecodeOnlyTestCases() throws IOException {

@Test (
dataProvider = "roundTripTestCases",
enabled = false,
description = "Roundtrip using htsjdk Range Codec. Compare the output with the original file" )
public void testRangeRoundTrip(
final Path uncompressedFilePath,
Expand All @@ -104,6 +105,7 @@ public void testRangeRoundTrip(

@Test (
dataProvider = "decodeOnlyTestCases",
enabled = false,
description = "Uncompress the existing compressed file using htsjdk Range codec and compare it with the original file.")
public void testDecodeOnly(
final Path compressedFilePath,
Expand Down

0 comments on commit 008cebd

Please sign in to comment.