summaryrefslogtreecommitdiffstats
path: root/tools/run_tests.sh
diff options
context:
space:
mode:
authorMoshe <moshehoa@amdocs.com>2018-03-26 13:54:47 +0300
committerMoshe <moshehoa@amdocs.com>2018-03-26 13:54:56 +0300
commit4391bbd783c9ca51eef7883b61292ff1b1beba7c (patch)
tree4a60c271553c42363c808527fe59d7ac66522362 /tools/run_tests.sh
parentea90f9ba9d0e317dfc5521dda9946844b7336abd (diff)
Add unit tests to improve coverage
Issue-ID: VNFSDK-183 Change-Id: I26d2412d3fcfd25431722a3da7cb40b23e2a98b4 Signed-off-by: Moshe <moshehoa@amdocs.com>
Diffstat (limited to 'tools/run_tests.sh')
-rwxr-xr-xtools/run_tests.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/run_tests.sh b/tools/run_tests.sh
index 4f7aea3..e225589 100755
--- a/tools/run_tests.sh
+++ b/tools/run_tests.sh
@@ -35,9 +35,9 @@ run_tests() {
echo "Running unittest ... "
if [ $FILE_OPTION == "f" ]; then
- python -m unittest discover -v -s tests/unit > $logfile 2>&1
+ python -m unittest discover -v -s vnftest/tests/unit > $logfile 2>&1
else
- python -m unittest discover -v -s tests/unit
+ python -m unittest discover -v -s vnftest/tests/unit
fi
if [ $? -ne 0 ]; then