Skip to content

Commit 0c2c1ec

Browse files
committed
chore: Add web-e2e profile to mvn
1 parent ca2b170 commit 0c2c1ec

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ matrix:
5252
# HeliumApplicationFactoryTest - https://issues.apache.org/jira/browse/ZEPPELIN-2470
5353
# After issues are fixed these tests need to be included back by removing them from the "-Dtests.to.exclude" property
5454
- jdk: "oraclejdk7"
55-
env: SCALA_VER="2.11" SPARK_VER="2.1.0" HADOOP_VER="2.6" PROFILE="-Pweb-ci -Pscalding -Phelium-dev -Pexamples -Pscala-2.11" BUILD_FLAG="package -Pbuild-distr -DskipRat" TEST_FLAG="verify -e -Pusing-packaged-distr -DskipRat" MODULES="-pl ${INTERPRETERS}" TEST_PROJECTS="-Dtests.to.exclude=**/ZeppelinSparkClusterTest.java,**/org.apache.zeppelin.spark.*,**/HeliumApplicationFactoryTest.java -DfailIfNoTests=false"
55+
env: SCALA_VER="2.11" SPARK_VER="2.1.0" HADOOP_VER="2.6" PROFILE="-Pweb-ci -Pweb-e2e -Pscalding -Phelium-dev -Pexamples -Pscala-2.11" BUILD_FLAG="package -Pbuild-distr -DskipRat" TEST_FLAG="verify -e -Pusing-packaged-distr -DskipRat" MODULES="-pl ${INTERPRETERS}" TEST_PROJECTS="-Dtests.to.exclude=**/ZeppelinSparkClusterTest.java,**/org.apache.zeppelin.spark.*,**/HeliumApplicationFactoryTest.java -DfailIfNoTests=false"
5656

5757
# Test selenium with spark module for 1.6.3
5858
- jdk: "oraclejdk7"

zeppelin-server/pom.xml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@
3838
</prerequisites>
3939

4040
<properties>
41+
<web.e2e.disabled>true</web.e2e.disabled>
42+
4143
<!--library versions-->
4244
<commons.httpclient.version>4.3.6</commons.httpclient.version>
4345
<jersey.version>2.22.2</jersey.version>
@@ -453,8 +455,9 @@
453455
</executions>
454456

455457
<configuration>
456-
<!-- use existing yarn -->
457-
<workingDirectory>${project.parent.basedir}/zeppelin-web</workingDirectory>
458+
<skip>${web.e2e.disabled}</skip>
459+
<!-- use existing yarn -->
460+
<workingDirectory>${project.parent.basedir}/zeppelin-web</workingDirectory>
458461
</configuration>
459462
</plugin>
460463

@@ -523,6 +526,13 @@
523526
</properties>
524527
</profile>
525528

529+
<profile>
530+
<id>web-e2e</id>
531+
<properties>
532+
<web.e2e.disabled>false</web.e2e.disabled>
533+
</properties>
534+
</profile>
535+
526536
<profile>
527537
<id>using-packaged-distr</id>
528538
<activation>

0 commit comments

Comments
 (0)