summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--java/broker/pom.xml7
-rw-r--r--java/pom.xml2
2 files changed, 3 insertions, 6 deletions
diff --git a/java/broker/pom.xml b/java/broker/pom.xml
index 573d54a2e0..b0203e95f9 100644
--- a/java/broker/pom.xml
+++ b/java/broker/pom.xml
@@ -34,9 +34,6 @@
<properties>
<topDirectoryLocation>..</topDirectoryLocation>
-
- <!-- Can override this in settings.xml -->
- <skip.python.tests>false</skip.python.tests>
</properties>
<dependencies>
@@ -177,11 +174,9 @@
</condition>
<condition property="skip-python-tests" value="true">
- <contains string="${skip.python.tests}" substring="true"/>>
+ <isset property="skip.python.tests"/>
</condition>
- <!--<property name="skip-python-tests" value="${skip.python.tests}"/>-->
-
<property name="command"
value="python run-tests -v -I java_failing.txt"/>
<!--value="bash -c 'python run-tests -v -I java_failing.txt'"/>-->
diff --git a/java/pom.xml b/java/pom.xml
index 23b707682a..d5b81a1db7 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -619,8 +619,10 @@ under the License.
<id>fastinstall</id>
<properties>
<maven.test.skip>true</maven.test.skip>
+ <skip.python.tests>true</skip.python.tests>
</properties>
</profile>
+
<profile>
<id>nochecks</id>
</profile>