#!/usr/bin/env bash
###########################################
## Python
###########################################

echo "Testing the Python package"
cd src
make test 

if [ $? -ne 0 ]; then
    echo "An error occurred while testing Python"
    exit 1
fi

