Add python-eventlet 0.16.1
[packages/trusty/python-eventlet.git] / tests / runtests.sh
1 #!/bin/bash -x
2
3 RES=0
4
5 case $1 in
6 python-eventlet)
7     echo "Testing $1"
8     python -c "import eventlet"
9     RES=$?
10 ;;
11 *)
12     echo "test not defined, skipping..."
13 ;;
14 esac
15
16 exit $RES