BEAM-261 Skip integration tests unless running with -Plocal-runnable-on-service-tests
Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/52d233aa Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/52d233aa Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/52d233aa Branch: refs/heads/master Commit: 52d233aa10dd71ba5f396d0ac76a29f9a3e30f5b Parents: 8827ccf Author: Thomas Weise <[email protected]> Authored: Wed Oct 26 12:19:25 2016 -0700 Committer: Thomas Weise <[email protected]> Committed: Wed Oct 26 12:19:25 2016 -0700 ---------------------------------------------------------------------- runners/apex/pom.xml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/52d233aa/runners/apex/pom.xml ---------------------------------------------------------------------- diff --git a/runners/apex/pom.xml b/runners/apex/pom.xml index 1d52af7..6ccc0da 100644 --- a/runners/apex/pom.xml +++ b/runners/apex/pom.xml @@ -37,11 +37,21 @@ <properties> <apex.core.version>3.5.0-SNAPSHOT</apex.core.version> <apex.malhar.version>3.4.0</apex.malhar.version> - <skipIntegrationTests>false</skipIntegrationTests> + <skipIntegrationTests>true</skipIntegrationTests> <!-- memory limit for embedded cluster --> <surefire.args>-Xmx2048m</surefire.args> </properties> + <profiles> + <profile> + <id>local-runnable-on-service-tests</id> + <activation><activeByDefault>false</activeByDefault></activation> + <properties> + <skipIntegrationTests>false</skipIntegrationTests> + </properties> + </profile> + </profiles> + <dependencies> <!-- Apex dependencies --> <dependency>
