aboutsummaryrefslogtreecommitdiffstats
path: root/run_tests.sh
diff options
context:
space:
mode:
authorJo¶rgen Karlsson <jorgen.w.karlsson@ericsson.com>2015-06-16 08:57:07 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2015-06-16 08:57:07 +0000
commitf68ce570fd0eefb17bfc9e1e75c57b24050db89e (patch)
treec9d92089e7bb0a839fa8c6119287a765559fd084 /run_tests.sh
parent585a2483e9fb021d853b0946f185d066335adea4 (diff)
parent17e94ff1e86c2a98895910d63828081ad5867052 (diff)
Merge "add unit test for ping"
Diffstat (limited to 'run_tests.sh')
-rwxr-xr-xrun_tests.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/run_tests.sh b/run_tests.sh
index cb8fdb310..b2bf807c1 100755
--- a/run_tests.sh
+++ b/run_tests.sh
@@ -25,8 +25,7 @@ run_flake8() {
run_tests() {
echo -n "Running unittest ... "
- logfile=test.log
- python -m unittest discover -s yardstick/tests &> $logfile
+ python -m unittest discover -s tests/unit
if [ $? -ne 0 ]; then
echo "FAILED, result in $logfile"
exit 1