libretime/travis/python.sh
Lucas Bickel 7a3d87a4b2 Run tests in small scripts
This is so we get a proper shell where running set -xe makes sense allowing travis to pick up nicely on how the tests run (ie. marking them as failed and not errored when the fail).
2017-03-04 10:55:12 +01:00

11 lines
218 B
Bash
Executable File

#!/bin/bash
set -xe
[[ "$PYTHON" == false ]] && exit 0
pushd python_apps/airtime_analyzer
nosetests -a '!rgain'
echo "replaygain tests where skipped due to not having a reliable replaygain install on travis."
popd