[MOS 10.0] Update python-django-openstack-auth package
[openstack-build/django_openstack_auth-build.git] / tests / runtests.sh
1 #!/bin/bash -x
2
3 RES=0
4
5 case $1 in
6 python-django-openstack-auth|openstack_auth|python2-django-openstack-auth)
7     echo "Testing $1"
8     python -c "import openstack_auth"
9     RES=$?
10 ;;
11 *)
12     echo "test not defined, skipping..."
13 ;;
14 esac
15
16 exit $RES