From 5c85fc1fb8b8ce98b1e987a63de02bf0c30c6eb7 Mon Sep 17 00:00:00 2001 From: Richard Zhou Date: Fri, 14 Aug 2015 10:20:18 +0800 Subject: [PATCH] SQOOP-2481: Sqoop2: Precommit: Drop call to clean while running unit tests (Jarek Jarcec Cecho via Richard Zhou) --- dev-support/test-patch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-support/test-patch.py b/dev-support/test-patch.py index 7bc55ea3..b3cf7c31 100755 --- a/dev-support/test-patch.py +++ b/dev-support/test-patch.py @@ -266,7 +266,7 @@ def find_all_files(top, fileRegExp=".*", dirRegExp=".*"): yield os.path.join(root, f) def mvn_test(result, output_dir): - run_mvn_test("clean test site", "unit", result, output_dir) # Will run cobertura and findbugs as well + run_mvn_test("test site", "unit", result, output_dir) # Will run cobertura and findbugs as well def mvn_integration(result, output_dir): run_mvn_test("integration-test -pl test", "integration", result, output_dir)