11 lines
112 B
Bash
Executable File
11 lines
112 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SRC_DIR=$(dirname $0)
|
|
|
|
cd ${SRC_DIR}/test/functional
|
|
nosetests --exe $@
|
|
func1=$?
|
|
cd -
|
|
|
|
exit $func1
|