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 156175e commit 07c4959Copy full SHA for 07c4959
test/framework/src/test/java/org/elasticsearch/test/VersionUtilsTests.java
@@ -253,6 +253,10 @@ public void testResolveReleasedVersionsAtNewMinorBranchIn6x() {
253
* agree with the list of wire and index compatible versions we build in gradle.
254
*/
255
public void testGradleVersionsMatchVersionUtils() {
256
+ if (System.getProperty("build.snapshot", "true").equals("false")) {
257
+ logger.warn("Skipping testGradleVersionsMatchVersionUtils(): See #27815 for details");
258
+ return;
259
+ }
260
// First check the index compatible versions
261
VersionsFromProperty indexCompatible = new VersionsFromProperty("tests.gradle_index_compat_versions");
262
0 commit comments