diff options
author | Moshe <moshehoa@amdocs.com> | 2018-03-26 13:54:47 +0300 |
---|---|---|
committer | Moshe <moshehoa@amdocs.com> | 2018-03-26 13:54:56 +0300 |
commit | 4391bbd783c9ca51eef7883b61292ff1b1beba7c (patch) | |
tree | 4a60c271553c42363c808527fe59d7ac66522362 /tools/run_tests.sh | |
parent | ea90f9ba9d0e317dfc5521dda9946844b7336abd (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-x | tools/run_tests.sh | 4 |
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 |