issue 355: Only run tests in mediagoblin/tests/
authorElrond <elrond+mediagoblin.org@samba-tng.org>
Thu, 10 Jan 2013 21:34:52 +0000 (22:34 +0100)
committerElrond <elrond+mediagoblin.org@samba-tng.org>
Fri, 11 Jan 2013 15:28:41 +0000 (16:28 +0100)
If you don't give an option argument (starting with a dash)
to runtests.sh then it will append the directory with all
the tests to the commandline of nosetests. That way it will
only search there for tests.

runtests.sh

index 94e77da223373155cebfa4bfdd098d86b9616e6a..ccba1abdb36c439e008a39a9bba801a4e3dd7425 100755 (executable)
@@ -28,4 +28,29 @@ else
     exit 1
 fi
 
-CELERY_CONFIG_MODULE=mediagoblin.init.celery.from_tests $NOSETESTS $@
+need_arg=1
+for i in "$@"
+do
+  case "$i" in
+    -*) ;;
+    *) need_arg=0; break ;;
+  esac
+done
+
+
+CELERY_CONFIG_MODULE=mediagoblin.init.celery.from_tests
+export CELERY_CONFIG_MODULE
+
+if [ "$need_arg" = 1 ]
+then
+  dir="`dirname $0`"/mediagoblin/tests
+  [ '!' -d "$dir" ] && dir=./mediagoblin/tests
+  if [ '!' -d "$dir" ]
+  then
+    echo "Cound not find tests dir"
+    exit 1
+  fi
+  $NOSETESTS "$@" "$dir"
+else
+  $NOSETESTS "$@"
+fi