diff options
-rw-r--r-- | java/broker/pom.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/java/broker/pom.xml b/java/broker/pom.xml index 785ae8642f..573d54a2e0 100644 --- a/java/broker/pom.xml +++ b/java/broker/pom.xml @@ -34,6 +34,9 @@ <properties> <topDirectoryLocation>..</topDirectoryLocation> + + <!-- Can override this in settings.xml --> + <skip.python.tests>false</skip.python.tests> </properties> <dependencies> @@ -173,6 +176,11 @@ <contains string="${user.dir}" substring="broker" /> </condition> + <condition property="skip-python-tests" value="true"> + <contains string="${skip.python.tests}" substring="true"/>> + </condition> + + <!--<property name="skip-python-tests" value="${skip.python.tests}"/>--> <property name="command" value="python run-tests -v -I java_failing.txt"/> |