felixcheung commented on a change in pull request #3285: [ZEPPELIN-3957] Divide 
SparkIntegrationTest into parts for build under 50 minutes
URL: https://github.com/apache/zeppelin/pull/3285#discussion_r249563081
 
 

 ##########
 File path: 
zeppelin-zengine/src/test/java/org/apache/zeppelin/interpreter/SparkIntegrationTestPt1.java
 ##########
 @@ -0,0 +1,25 @@
+package org.apache.zeppelin.interpreter;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Parameterized;
+
+import java.util.Arrays;
+import java.util.List;
+
+@RunWith(value = Parameterized.class)
+public class SparkIntegrationTestPt1 extends SparkIntegrationTest{
+
+  public SparkIntegrationTestPt1(String sparkVersion) {
+    super(sparkVersion);
+  }
+
+  @Parameterized.Parameters
+  public static List<Object[]> data() {
+    return Arrays.asList(new Object[][]{
+            {"2.4.0"},
+            {"2.3.2"},
 
 Review comment:
   looks like we need to upgrade to 2.3.3 (soon) and 2.2.3..

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to