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 7e0fc8a commit d26b33dCopy full SHA for d26b33d
test/framework/src/test/java/org/elasticsearch/test/VersionUtilsTests.java
@@ -259,6 +259,10 @@ public void testResolveReleasedVersionsAtNewMinorBranchIn6x() {
259
* agree with the list of wire and index compatible versions we build in gradle.
260
*/
261
public void testGradleVersionsMatchVersionUtils() {
262
+ if (System.getProperty("build.snapshot", "true").equals("false")) {
263
+ logger.warn("Skipping testGradleVersionsMatchVersionUtils(): See #27815 for details");
264
+ return;
265
+ }
266
// First check the index compatible versions
267
VersionsFromProperty indexCompatible = new VersionsFromProperty("tests.gradle_index_compat_versions");
268
List<Version> released = VersionUtils.allReleasedVersions().stream()
0 commit comments