You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by si...@apache.org on 2020/08/26 10:56:44 UTC

[lucene-solr] branch branch_8x updated: Run tests last to fail fast on missing license and doc issues (#1788)

This is an automated email from the ASF dual-hosted git repository.

simonw pushed a commit to branch branch_8x
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8x by this push:
     new 0b22879  Run tests last to fail fast on missing license and doc issues (#1788)
0b22879 is described below

commit 0b22879b667937a4456497fe22b6b4b7eb1655b0
Author: Simon Willnauer <si...@apache.org>
AuthorDate: Wed Aug 26 12:55:25 2020 +0200

    Run tests last to fail fast on missing license and doc issues (#1788)
---
 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 6cf5db6..58dbe8b 100755
--- a/dev-tools/scripts/buildAndPushRelease.py
+++ b/dev-tools/scripts/buildAndPushRelease.py
@@ -108,8 +108,8 @@ def prepare(root, version, gpgKeyID, gpgPassword):
   print('  Check DOAP files')
   checkDOAPfiles(version)
 
-  print('  ant -Dtests.badapples=false clean test validate documentation-lint')
-  run('ant -Dtests.badapples=false clean test validate documentation-lint')
+  print('  ant -Dtests.badapples=false clean validate documentation-lint test')
+  run('ant -Dtests.badapples=false clean validate documentation-lint test')
 
   open('rev.txt', mode='wb').write(rev.encode('UTF-8'))