Skip to content

Commit

Permalink
turning off a mysteriously-failing docker test with Chris Norman's ap…
Browse files Browse the repository at this point in the history
…proval
  • Loading branch information
davidbenjamin committed Aug 16, 2022
1 parent 2ed7e17 commit 28549c9
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import org.broadinstitute.hellbender.CommandLineProgramTest;
import org.testng.Assert;
import org.testng.SkipException;
import org.testng.annotations.Test;

import java.io.File;
Expand Down Expand Up @@ -37,6 +38,12 @@ public class DocumentationGenerationIntegrationTest extends CommandLineProgramTe
@SuppressWarnings({"deprecation","removal"})
@Test
public static void documentationSmokeTest() {
// this test mysteriously fails on the Java 8 docker integration test
final DocumentationGenerationIntegrationTest dt = new DocumentationGenerationIntegrationTest();
if (dt.isGATKDockerContainer()) {
throw new SkipException("See gatk issue #7991");
}

final File docTestTarget = createTempDir("docgentest");
final String[] argArray = new String[]{
"javadoc",
Expand Down

0 comments on commit 28549c9

Please sign in to comment.