diff options
-rwxr-xr-x | qpid/cpp/src/tests/ha_tests.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/qpid/cpp/src/tests/ha_tests.py b/qpid/cpp/src/tests/ha_tests.py index f22e12a355..295b554e3a 100755 --- a/qpid/cpp/src/tests/ha_tests.py +++ b/qpid/cpp/src/tests/ha_tests.py @@ -1543,6 +1543,11 @@ class TransactionTests(HaBrokerTest): for s in sessions: s.connection.close() def test_broker_tx_tests(self): + try: + import qpid_tests.broker_0_10 + except ImportError: + raise Skipped("Tests not found") + cluster = HaCluster(self, 3) print "Running python broker tx tests" p = subprocess.Popen(["qpid-python-test", |