From c074b97e79ffbbc914d1666e85cf725a1a7a8347 Mon Sep 17 00:00:00 2001 From: Adrien Grand Date: Fri, 30 Nov 2018 09:09:00 +0100 Subject: [PATCH] LUCENE-8579: Don't run bad apples when building a release. --- dev-tools/scripts/buildAndPushRelease.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-tools/scripts/buildAndPushRelease.py b/dev-tools/scripts/buildAndPushRelease.py index 5a8f5cccb8e..98547c4aa31 100644 --- a/dev-tools/scripts/buildAndPushRelease.py +++ b/dev-tools/scripts/buildAndPushRelease.py @@ -105,8 +105,8 @@ def prepare(root, version, gpgKeyID, gpgPassword): print(' Check DOAP files') checkDOAPfiles(version) - print(' ant clean test validate documentation-lint') - run('ant clean test validate documentation-lint') + print(' ant -Dtests.badapples=false clean test validate documentation-lint') + run('ant -Dtests.badapples=false clean test validate documentation-lint') open('rev.txt', mode='wb').write(rev.encode('UTF-8'))