You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# many files have their unittest run if you run them as a main file
# plus my_unittest.py is a big unittest suite
function runtest() {
PYTHONPATH=. "$1"
ret="$?"
if [ "$ret" != 0 ]; then
exit "$ret"
fi
}
for x in ./my_unittests.py ./my_statistics.py ./utils.py ./preprocessors/featurematrixconversion.py ./preprocessors/featureselectionbase.py ./preprocessors/chisquare.py ./preprocessors/mutualinformation.py;