Release Wizard: Run tests after building artifacts
diff --git a/dev-tools/scripts/buildAndPushRelease.py b/dev-tools/scripts/buildAndPushRelease.py
index 58dbe8b..01c51c2 100755
--- a/dev-tools/scripts/buildAndPushRelease.py
+++ b/dev-tools/scripts/buildAndPushRelease.py
@@ -108,8 +108,9 @@
   print('  Check DOAP files')
   checkDOAPfiles(version)
 
-  print('  ant -Dtests.badapples=false clean validate documentation-lint test')
-  run('ant -Dtests.badapples=false clean validate documentation-lint test')
+  # Disable tests here since we run them again later
+  print('  ant -Dtests.badapples=false clean validate documentation-lint')
+  run('ant -Dtests.badapples=false clean validate documentation-lint')
 
   open('rev.txt', mode='wb').write(rev.encode('UTF-8'))