From: Yang Yu Date: Thu, 4 Jan 2018 06:10:00 +0000 (+0800) Subject: Add unit & coverage test X-Git-Tag: opnfv-6.0.0~22 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?p=bottlenecks.git;a=commitdiff_plain;h=cbd8645b9d529ce26535f0bb9553892c3fce4dc0 Add unit & coverage test JIRA: BOTTLENECK-219 Using python-nose to run nosetests on unittest and coverage test Change-Id: I3928823bc2f8c65dbe770827ee69da8dd3ced1f2 Signed-off-by: Yang Yu --- diff --git a/test/__init__.py b/test/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/verify.sh b/verify.sh index 1e0d0132..f8668e69 100755 --- a/verify.sh +++ b/verify.sh @@ -14,7 +14,7 @@ getopts ":f" FILE_OPTION run_flake8() { - echo "Running flake8 ... " + echo "Running flake8 for python style check... " logfile=flake8_verify.log if [ $FILE_OPTION == "f" ]; then flake8 --append-config=flake8_cfg testsuites/posca/ utils/ > $logfile @@ -33,16 +33,13 @@ run_flake8() { fi } -run_tests() { - echo "Running unittest ... " - #will add future +run_nosetests() { + echo "Running unit and coverage test ... " + nosetests --with-coverage --cover-tests \ + --cover-min-percentage 100 \ + test/ } -run_coverage() { - echo "Running coverage ..." - #will add future -} run_flake8 -run_tests -run_coverage +run_nosetests