diff options
author | Rupert Smith <rupertlssmith@apache.org> | 2007-05-29 10:52:29 +0000 |
---|---|---|
committer | Rupert Smith <rupertlssmith@apache.org> | 2007-05-29 10:52:29 +0000 |
commit | 2912bd2be83914b1e3ed2c67bb35c3ec66c33296 (patch) | |
tree | b5cadf5d1bc5b55fb8a1486c56fba21f82dfe33f | |
parent | 6bb17b1310dfd3c087a64c1d023b2fe467182248 (diff) | |
download | qpid-python-2912bd2be83914b1e3ed2c67bb35c3ec66c33296.tar.gz |
Can now pass property to skip python tests, set in settings.xml
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@542484 13f79535-47bb-0310-9956-ffa450edef68
-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"/> |