#!/bin/bash

for t in tests/test*; do
    echo $t
    file_type=$(file -b $t)
    case $file_type in
        *python*) python $t ;;
        *Bourne*) bash $t ;;
        *) echo "Unknown" ;;
    esac
    echo
done
