blob: d9754ed0fb2d24cf9045fbda62eaeb8dd124880a (
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.txt -b localhost:$QPID_PORT $PYTHON_TESTS
else
echo Warning: python tests not found.
fi
|