#!/bin/sh
echo '========= Python 2 tests =========='
for file in test*.py
do
    python2  $file
done

echo '========= Python 3 tests =========='
for file in test*.py
do
    python3 $file
done
