aboutsummaryrefslogtreecommitdiffstats
path: root/run_tests.sh
diff options
context:
space:
mode:
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