diff options
Diffstat (limited to 'cpp/src/tests/python_tests')
-rwxr-xr-x | cpp/src/tests/python_tests | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cpp/src/tests/python_tests b/cpp/src/tests/python_tests index e2077ef7dc..b82123b5bd 100755 --- a/cpp/src/tests/python_tests +++ b/cpp/src/tests/python_tests @@ -20,10 +20,9 @@ # # Run the python tests. -. `dirname $0`/python_env.sh +source ./test_env.sh QPID_PORT=${QPID_PORT:-5672} PYTHON_TESTS=${PYTHON_TESTS:-$*} FAILING=${FAILING:-/dev/null} -cd $PYTHON_DIR -python commands/qpid-python-test -b localhost:$QPID_PORT -I $FAILING $PYTHON_TESTS || exit 1 +python $QPID_PYTHON_TEST -b localhost:$QPID_PORT -I $FAILING $PYTHON_TESTS || exit 1 |