From b066cf063bce0179a2817e0c48767fc92718be77 Mon Sep 17 00:00:00 2001 From: Kimoon Kim Date: Thu, 23 Feb 2017 17:22:46 -0800 Subject: [PATCH 1/3] Exclude SparkSubmitSuite from Travis unit test build --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index be255103ac725..bb97baa1f6c2a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,7 +35,7 @@ env: # Used by the install section below. - PHASE=test \ PROFILES="-Pmesos -Pyarn -Phadoop-2.7 -Pkubernetes" \ MODULES="-pl core,resource-managers/kubernetes/core -am" \ - ARGS="-Dsuffixes='^org\.apache\.spark\.(?!rdd\.LocalCheckpointSuite$|deploy\.StandaloneDynamicAllocationSuite$).*'" + ARGS="-Dsuffixes='^org\.apache\.spark\.(?!rdd\.LocalCheckpointSuite$|deploy\.SparkSubmitSuite$|deploy\.StandaloneDynamicAllocationSuite$).*'" # Configure the full build. - PHASE=install \ PROFILES="-Pmesos -Pyarn -Phadoop-2.7 -Pkubernetes -Pkinesis-asl -Phive -Phive-thriftserver" \ From 069a7e1caf5655795dc5bb9cb30e5c5088574370 Mon Sep 17 00:00:00 2001 From: Kimoon Kim Date: Fri, 24 Feb 2017 10:03:37 -0800 Subject: [PATCH 2/3] Remove SortShuffleSuite --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index bb97baa1f6c2a..f38832fe3c2ea 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,7 +35,7 @@ env: # Used by the install section below. - PHASE=test \ PROFILES="-Pmesos -Pyarn -Phadoop-2.7 -Pkubernetes" \ MODULES="-pl core,resource-managers/kubernetes/core -am" \ - ARGS="-Dsuffixes='^org\.apache\.spark\.(?!rdd\.LocalCheckpointSuite$|deploy\.SparkSubmitSuite$|deploy\.StandaloneDynamicAllocationSuite$).*'" + ARGS="-Dsuffixes='^org\.apache\.spark\.(?!SortShuffleSuite$|rdd\.LocalCheckpointSuite$|deploy\.SparkSubmitSuite$|deploy\.StandaloneDynamicAllocationSuite$).*'" # Configure the full build. - PHASE=install \ PROFILES="-Pmesos -Pyarn -Phadoop-2.7 -Pkubernetes -Pkinesis-asl -Phive -Phive-thriftserver" \ From 590a70cc2f727ff9038caa35682523bfa5a9b2fb Mon Sep 17 00:00:00 2001 From: Kimoon Kim Date: Fri, 24 Feb 2017 10:04:35 -0800 Subject: [PATCH 3/3] Exclude Java tests --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f38832fe3c2ea..87bc84645ca7d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,7 +35,7 @@ env: # Used by the install section below. - PHASE=test \ PROFILES="-Pmesos -Pyarn -Phadoop-2.7 -Pkubernetes" \ MODULES="-pl core,resource-managers/kubernetes/core -am" \ - ARGS="-Dsuffixes='^org\.apache\.spark\.(?!SortShuffleSuite$|rdd\.LocalCheckpointSuite$|deploy\.SparkSubmitSuite$|deploy\.StandaloneDynamicAllocationSuite$).*'" + ARGS="-Dtest=none -Dsuffixes='^org\.apache\.spark\.(?!SortShuffleSuite$|rdd\.LocalCheckpointSuite$|deploy\.SparkSubmitSuite$|deploy\.StandaloneDynamicAllocationSuite$).*'" # Configure the full build. - PHASE=install \ PROFILES="-Pmesos -Pyarn -Phadoop-2.7 -Pkubernetes -Pkinesis-asl -Phive -Phive-thriftserver" \