X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;ds=sidebyside;f=debian%2Ftests%2Fpython-neutron;fp=debian%2Ftests%2Fpython-neutron;h=dd823e75d2b86f2711dc791eb4f73d5fe24e6f37;hb=b8c751c0e66c4006e2ab2068726acb8cfa62a030;hp=0000000000000000000000000000000000000000;hpb=7858ae023acbcdc5aff394451b1bd694a2ed7fdb;p=openstack-build%2Fneutron-build.git diff --git a/debian/tests/python-neutron b/debian/tests/python-neutron new file mode 100644 index 000000000..dd823e75d --- /dev/null +++ b/debian/tests/python-neutron @@ -0,0 +1,14 @@ +#!/bin/bash +#------------------------- +# Testing client utilities +#------------------------- +set -e + +result=$(python `dirname $0`/test_import_neutron.py 2>&1) +if [ "$result" ]; then + echo "ERROR: PYTHON-NEUTRON MODULE CANNOT BE IMPORTED" + exit 1 +else + echo "OK" + exit 0 +fi