10 lines
172 B
Bash
Executable File
10 lines
172 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SRC_DIR=$(python -c "import os; print os.path.dirname(os.path.realpath('$0'))")
|
|
cd ${SRC_DIR}/tests/functional
|
|
nosetests --exe $@
|
|
rvalue=$?
|
|
cd -
|
|
|
|
exit $rvalue
|