Skip to content

Commit

Permalink
Deactivate integration-tests for gearpump-runner by default
Browse files Browse the repository at this point in the history
  • Loading branch information
manuzhang committed Jul 25, 2017
1 parent 49d4ed5 commit d56606d
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
24 changes: 24 additions & 0 deletions examples/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,30 @@
</systemPropertyVariables>
</configuration>
</execution>
<execution>
<id>gearpump-runner-integration-tests</id>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
<configuration>
<includes>
<include>WordCountIT.java</include>
<include>WindowedWordCountIT.java</include>
</includes>
<parallel>none</parallel>
<threadCount>4</threadCount>
<systemPropertyVariables>
<beamTestPipelineOptions>
[
"--project=apache-beam-testing",
"--tempRoot=gs://temp-storage-for-end-to-end-tests",
"--runner=org.apache.beam.runners.gearpump.TestGearpumpRunner"
]
</beamTestPipelineOptions>
</systemPropertyVariables>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
Expand Down
3 changes: 1 addition & 2 deletions runners/gearpump/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@
<profiles>
<profile>
<id>local-validates-runner-tests</id>
<!-- TODO: once on master branch, move to postcommit only -->
<activation><activeByDefault>true</activeByDefault></activation>
<activation><activeByDefault>false</activeByDefault></activation>
<build>
<plugins>
<plugin>
Expand Down

0 comments on commit d56606d

Please sign in to comment.