We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7ea034 commit a3cb741Copy full SHA for a3cb741
buildSrc/src/test/java/org/elasticsearch/gradle/testclusters/TestClustersPluginIT.java
@@ -55,6 +55,9 @@ public void testUseClusterByTwo() {
55
}
56
57
public void testUseClusterByUpToDateTask() {
58
+ // Run it once, ignoring the result and again to make sure it's considered up to date.
59
+ // Gradle randomly considers tasks without inputs and outputs as as up-to-date or success on the first run
60
+ getTestClustersRunner("upToDate1", "upToDate2").build();
61
BuildResult result = getTestClustersRunner("upToDate1", "upToDate2").build();
62
assertTaskUpToDate(result, ":upToDate1", ":upToDate2");
63
assertNotStarted(result);
0 commit comments