Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix requester pays access harder. #7716 #7730

Merged
merged 7 commits into from
Apr 7, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Disable tests in RequesterPaysIntegrationTest
  • Loading branch information
droazen committed Apr 6, 2022
commit 7069c757f2a0422c97f07d0c24bfeb76d731a741
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ public Object[][] getRequesterPaysPaths(){
};
}

@Test(dataProvider = "getRequesterPaysPaths", groups="cloud")
// Disabled due to https://github.com/broadinstitute/gatk/issues/7763
@Test(dataProvider = "getRequesterPaysPaths", groups="cloud", enabled = false)
public void testMixedNormalAndRequesterPays(String referenceBase, String bamBase, String vcfBase,
String intervalBase, boolean requiresRequesterPays) throws IOException {
final ArgumentsBuilder args = new ArgumentsBuilder();
Expand All @@ -65,7 +66,8 @@ public void testMixedNormalAndRequesterPays(String referenceBase, String bamBase
IntegrationTestSpec.assertEqualTextFiles(output, new File(packageRootTestDir+"engine/RequesterPaysIntegrationTest/expected_ExampleReadWalkerWithVariantsIntegrationTest_output.txt"));
}

@Test(dataProvider = "getRequesterPaysPaths", groups="cloud")
// Disabled due to https://github.com/broadinstitute/gatk/issues/7763
@Test(dataProvider = "getRequesterPaysPaths", groups="cloud", enabled = false)
public void testWithoutRequesterPaysArgument(String referenceBase, String bamBase, String vcfBase,
String intervalBase, boolean requiresRequesterPays) {
final ArgumentsBuilder args = new ArgumentsBuilder();
Expand Down