#!/bin/bash -x RES=0 case $1 in python-eventlet) echo "Testing $1" python -c "import eventlet" RES=$? ;; *) echo "test not defined, skipping..." ;; esac exit $RES