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).
This commit is contained in:
parent
9b3d0c90da
commit
7a3d87a4b2
3 changed files with 21 additions and 17 deletions
10
travis/python.sh
Executable file
10
travis/python.sh
Executable file
|
@ -0,0 +1,10 @@
|
|||
#!/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
|
Loading…
Add table
Add a link
Reference in a new issue