blob: 57cbba68488f6d7ba6bf98e5a8a55606cf9aac5c (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# Run the python tests.
if test -d ../../../python ; then
cd ../../../python && ./run-tests -v -s "0-9" -e ../specs/amqp-dtx-preview.0-9.xml -I cpp_failing_0-9.txt -b localhost:$QPID_PORT $PYTHON_TESTS
else
echo Warning: python tests not found.
fi
|