Removing extra-tests from running tests on PR builds
Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/91a41ada Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/91a41ada Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/91a41ada Branch: refs/heads/master Commit: 91a41adaa88d24162074d92903fc439486b9f9ec Parents: cf777ec Author: Clebert Suconic <[email protected]> Authored: Tue Jun 23 21:50:54 2015 -0400 Committer: Clebert Suconic <[email protected]> Committed: Tue Jun 23 23:43:44 2015 -0400 ---------------------------------------------------------------------- pom.xml | 5 ++++- tests/pom.xml | 7 +++---- 2 files changed, 7 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/91a41ada/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 25056af..fd30308 100644 --- a/pom.xml +++ b/pom.xml @@ -71,6 +71,8 @@ <skipConcurrentTests>true</skipConcurrentTests> <skipRestTests>true</skipRestTests> <skipActiveMQ5Tests>true</skipActiveMQ5Tests> + <skipExtraTests>true</skipExtraTests> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> @@ -587,6 +589,7 @@ <skipExtraTests>false</skipExtraTests> <skipStyleCheck>false</skipStyleCheck> <skipLicenseCheck>false</skipLicenseCheck> + <skipExtraTests>false</skipExtraTests> </properties> </profile> <profile> @@ -620,7 +623,7 @@ <skipJoramTests>false</skipJoramTests> <skipConcurrentTests>false</skipConcurrentTests> <skipRestTests>false</skipRestTests> - <skipExtraTests>false</skipExtraTests> + <skipExtraTests>true</skipExtraTests> <skipStyleCheck>false</skipStyleCheck> <skipLicenseCheck>false</skipLicenseCheck> </properties> http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/91a41ada/tests/pom.xml ---------------------------------------------------------------------- diff --git a/tests/pom.xml b/tests/pom.xml index 503334d..b2dfa5c 100644 --- a/tests/pom.xml +++ b/tests/pom.xml @@ -75,14 +75,13 @@ </build> <profiles> - <profile> + <profile> <id>extra-tests</id> <modules> + <!-- to run extra-tests you must define -DskipExtraTests=false + or run it with the tests profile --> <module>extra-tests</module> </modules> - <properties> - <skipExtraTests>false</skipExtraTests> - </properties> </profile> <profile> <id>activemq5-unit-tests</id>
