blob: 2c0b6b207145d737699f2060ef5ea04ff75bdb86 (
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 $PYTHON_TESTS
else
echo Warning: python tests not found.
fi
|