You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by kp...@apache.org on 2016/04/01 23:26:11 UTC

qpid-interop-test git commit: QPIDIT-22: Added support for MAVEN_REPO_PATH environment variable in JMS tests for use on Jenkins

Repository: qpid-interop-test
Updated Branches:
  refs/heads/master ece43490c -> a2bee83f0


QPIDIT-22: Added support for MAVEN_REPO_PATH environment variable in JMS tests for use on Jenkins


Project: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/commit/a2bee83f
Tree: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/tree/a2bee83f
Diff: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/diff/a2bee83f

Branch: refs/heads/master
Commit: a2bee83f05e179368e12d3dad3f5baa2211e03de
Parents: ece4349
Author: Kim van der Riet <kp...@apache.org>
Authored: Fri Apr 1 17:21:18 2016 -0400
Committer: Kim van der Riet <kp...@apache.org>
Committed: Fri Apr 1 17:21:18 2016 -0400

----------------------------------------------------------------------
 src/py/qpid-interop-test/jms/jms_message_tests.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-interop-test/blob/a2bee83f/src/py/qpid-interop-test/jms/jms_message_tests.py
----------------------------------------------------------------------
diff --git a/src/py/qpid-interop-test/jms/jms_message_tests.py b/src/py/qpid-interop-test/jms/jms_message_tests.py
index 7c55e14..201d08b 100755
--- a/src/py/qpid-interop-test/jms/jms_message_tests.py
+++ b/src/py/qpid-interop-test/jms/jms_message_tests.py
@@ -333,7 +333,7 @@ class QpidJmsShim(Shim):
 
     # Classpath components
     QPID_INTEROP_TEST_SHIM_JAR = path.join(QPID_INTEROP_TEST_HOME, 'shims', 'qpid-jms', 'target', 'qpid-jms-shim.jar')
-    MAVEN_REPO_PATH = path.join(getenv('HOME'), '.m2', 'repository')
+    MAVEN_REPO_PATH = getenv('MAVEN_REPO_PATH', path.join(getenv('HOME'), '.m2', 'repository'))
     JMS_API_JAR = path.join(MAVEN_REPO_PATH, 'org', 'apache', 'geronimo', 'specs', 'geronimo-jms_1.1_spec', '1.1.1',
                             'geronimo-jms_1.1_spec-1.1.1.jar')
     JSON_API_JAR = path.join(QPID_INTEROP_TEST_HOME, 'jars', 'javax.json-api-1.0.jar')


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org