You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@slider.apache.org by st...@apache.org on 2014/06/24 02:29:21 UTC

git commit: SLIDER-106 funtest properties skipped by default

Repository: incubator-slider
Updated Branches:
  refs/heads/develop 537d87c25 -> 153f5e94b


SLIDER-106 funtest properties skipped by default


Project: http://git-wip-us.apache.org/repos/asf/incubator-slider/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-slider/commit/153f5e94
Tree: http://git-wip-us.apache.org/repos/asf/incubator-slider/tree/153f5e94
Diff: http://git-wip-us.apache.org/repos/asf/incubator-slider/diff/153f5e94

Branch: refs/heads/develop
Commit: 153f5e94b64a45e97c4b0494755472788455d678
Parents: 537d87c
Author: Steve Loughran <st...@apache.org>
Authored: Mon Jun 23 16:19:49 2014 -0700
Committer: Steve Loughran <st...@apache.org>
Committed: Mon Jun 23 16:19:49 2014 -0700

----------------------------------------------------------------------
 slider-funtest/pom.xml | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/153f5e94/slider-funtest/pom.xml
----------------------------------------------------------------------
diff --git a/slider-funtest/pom.xml b/slider-funtest/pom.xml
index 42a57b2..51b5cec 100644
--- a/slider-funtest/pom.xml
+++ b/slider-funtest/pom.xml
@@ -265,5 +265,39 @@
 
   </dependencies>
 
+  <profiles>
+    <profile>
+      <id>tests-on-from-CLI</id>
+      <activation>
+        <property>
+          <name>slider.conf.dir</name>
+        </property>
+      </activation>
+      <properties>
+        <maven.test.skip>false</maven.test.skip>
+      </properties>
+    </profile>
+    <profile>
+      <id>tests-on-from-build.properties</id>
+      <activation>
+        <file>
+          <exists>../build.properties</exists>
+        </file>
+      </activation>
+      <properties>
+        <maven.test.skip>false</maven.test.skip>
+      </properties>
+    </profile>
+    <profile>
+      <id>tests-off</id>
+      <activation>
+        <activeByDefault>true</activeByDefault>
+      </activation>
+      <properties>
+        <maven.test.skip>true</maven.test.skip>
+      </properties>
+    </profile>
+
+  </profiles>
 
 </project>