summaryrefslogtreecommitdiffstats
path: root/functests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'functests.sh')
-rwxr-xr-xfunctests.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/functests.sh b/functests.sh
deleted file mode 100755
index 9797f58..0000000
--- a/functests.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-
-SRC_DIR=$(dirname $0)
-
-cd ${SRC_DIR}/test/functional
-nosetests --exe $@
-func1=$?
-cd -
-
-cd ${SRC_DIR}/test/functionalnosetests
-nosetests --exe $@
-func2=$?
-cd -
-
-exit $((func1 + func2))