We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9cac8c commit f52119dCopy full SHA for f52119d
src/test/java/org/broadinstitute/hellbender/testutils/SamtoolsTestUtilsTest.java
@@ -26,6 +26,10 @@ public void testSamtoolsIsAvailable() {
26
27
@Test
28
public void testSamtoolsVersion() {
29
+ //TODO !!!!!!!!Temporary override to skip this test in the GATK Docker container
30
+ if (isGATKDockerContainer()) {
31
+ throw new SkipException("Samtools not available in GATK Docker container");
32
+ }
33
if (!SamtoolsTestUtils.isSamtoolsAvailable()) {
34
throw new SkipException("Samtools not available on local device");
35
}
0 commit comments