blob: 73b3b970c1705a7f070d4b881905d3f0346fcdd6 (
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 ../specs/amqp.0-10-preview.xml -I cpp_failing_0-10_preview.txt -b localhost:$QPID_PORT $PYTHON_TESTS && ./run-tests --skip-self-test -v -s "0-10" -I cpp_failing_0-10.txt -b localhost:$QPID_PORT $PYTHON_TESTS
else
echo Warning: python tests not found.
fi
|