]> review.fuel-infra Code Review - openstack-build/neutron-build.git/blob - debian/tests/python-neutron
Add Neutron tests improvements
[openstack-build/neutron-build.git] / debian / tests / python-neutron
1 #!/bin/bash
2 #-------------------------
3 # Testing client utilities
4 #-------------------------
5 set -e
6
7 result=$(python `dirname $0`/test_import_neutron.py 2>&1)
8 if [ "$result" ]; then
9     echo "ERROR: PYTHON-NEUTRON MODULE CANNOT BE IMPORTED"
10     exit 1
11 else
12     echo "OK"
13     exit 0
14 fi