#!/usr/bin/env bash

if [ "$SAGE_LOCAL" = "" ]; then
   echo "SAGE_LOCAL undefined ... exiting";
   echo "Maybe run 'sage -sh'?"
   exit 1
fi

# Run the unittests.  The tests now require nose.
#cd src
#python test/alltests.py

if [ $? -ne 0 ]; then
    echo "There was a problem during the SQLAlchemy unit tests"
    exit 1
fi
