diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-04-03 15:21:40 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-04-03 15:21:40 -0500 |
commit | c8196f2805495f388a5e29bde07db08aa3800926 (patch) | |
tree | c8485ed305dbc9ff7c1f9f3dae2867ca5960d8ed /runtests.sh | |
parent | cb1454408299afed5376b15c004e0e2170280a05 (diff) | |
download | mediagoblin-c8196f2805495f388a5e29bde07db08aa3800926.tar.lz mediagoblin-c8196f2805495f388a5e29bde07db08aa3800926.tar.xz mediagoblin-c8196f2805495f388a5e29bde07db08aa3800926.zip |
Use py.test --boxed for unit tests from now on!
Diffstat (limited to 'runtests.sh')
-rwxr-xr-x | runtests.sh | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/runtests.sh b/runtests.sh index fd19caf8..cd53da2d 100755 --- a/runtests.sh +++ b/runtests.sh @@ -26,14 +26,14 @@ then exit 1 fi -if [ -x "$basedir/bin/nosetests" ]; then - export NOSETESTS="$basedir/bin/nosetests"; - echo "Using $NOSETESTS"; -elif which nosetests > /dev/null; then - echo "Using nosetests from \$PATH"; - export NOSETESTS="nosetests"; +if [ -x "$basedir/bin/py.test" ]; then + export PYTEST="$basedir/bin/py.test"; + echo "Using $PYTEST"; +elif which py.test > /dev/null; then + echo "Using py.test from \$PATH"; + export PYTEST="py.test"; else - echo "nosetests not found. X_X"; + echo "py.test not found. X_X"; echo "Please install 'nose'. Exiting."; exit 1 fi @@ -45,7 +45,7 @@ echo "+ CELERY_CONFIG_MODULE=$CELERY_CONFIG_MODULE" # Look to see if the user has specified a specific directory/file to # run tests out of. If not we'll need to pass along -# mediagoblin/tests/ later very specifically. Otherwise nosetests +# mediagoblin/tests/ later very specifically. Otherwise py.test # will try to read all directories, and this turns into a mess! need_arg=1 @@ -61,8 +61,8 @@ if [ "$need_arg" = 1 ] then testdir="$basedir/mediagoblin/tests" set -x - exec "$NOSETESTS" "$@" "$testdir" + exec "$PYTEST" "$@" "$testdir" --boxed else set -x - exec "$NOSETESTS" "$@" + exec "$PYTEST" "$@" --boxed fi |