#!/bin/bash

sed -i 's/"\.\."/"\/usr"/' test/testbabel.py

for TEST in test/test*.py
do
    python3 ${TEST}
done
