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 be0c051 commit d67c2d1Copy full SHA for d67c2d1
src/test/java/org/jenkinsci/plugins/workflow/libs/SCMSourceRetrieverTest.java
@@ -1496,7 +1496,9 @@ public static class BasicSCMSource extends SCMSource {
1496
1497
@Issue("SECURITY-2463")
1498
@Test public void checkoutDirectoriesAreNotReusedByDifferentScms() throws Exception {
1499
- assumeFalse(Functions.isWindows()); // Checkout hook is not cross-platform.
+ assumeFalse("checkoutDirectoriesAreNotReusedByDifferentScms() is " +
1500
+ "skipped on Windows: Checkout hook is not cross-platform",
1501
+ Functions.isWindows());
1502
sampleRepo.init();
1503
sampleRepo.write("vars/foo.groovy", "def call() { echo('using global lib') }");
1504
sampleRepo.git("add", "vars");
0 commit comments