From 5671d25ecb2db4e41aa016298799b635bb390192 Mon Sep 17 00:00:00 2001 From: rohitsakala Date: Tue, 24 Jan 2017 01:37:54 +0530 Subject: Add nose and coverage requirements in unittest script bugfix to :- https://build.opnfv.org/ci/job/testapi-verify-master/22/console Change-Id: I0eaa730aed68ce11b9095c2810c223a0519ffcde Signed-off-by: rohitsakala --- jjb/releng/testapi-automate.yml | 4 ++-- utils/test/testapi/run_test.sh | 14 +++++--------- 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/jjb/releng/testapi-automate.yml b/jjb/releng/testapi-automate.yml index 25ee687e2..084790e70 100644 --- a/jjb/releng/testapi-automate.yml +++ b/jjb/releng/testapi-automate.yml @@ -55,8 +55,8 @@ - cobertura: report-file: "coverage.xml" only-stable: "true" - health-auto-update: "true" - stability-auto-update: "true" + health-auto-update: "false" + stability-auto-update: "false" zoom-coverage-chart: "true" targets: - files: diff --git a/utils/test/testapi/run_test.sh b/utils/test/testapi/run_test.sh index d1f05f201..51db09f65 100755 --- a/utils/test/testapi/run_test.sh +++ b/utils/test/testapi/run_test.sh @@ -5,20 +5,16 @@ set -o errexit # Get script directory SCRIPTDIR=`dirname $0` -# Either Workspace is set (CI) -if [ -z $WORKSPACE ] -then - WORKSPACE="." -fi - echo "Running unit tests..." # Creating virtual environment -virtualenv $WORKSPACE/testapi_venv -source $WORKSPACE/testapi_venv/bin/activate +virtualenv $SCRIPTDIR/testapi_venv +source $SCRIPTDIR/testapi_venv/bin/activate # Install requirements pip install -r $SCRIPTDIR/requirements.txt +pip install coverage +pip install nose>=1.3.1 find . -type f -name "*.pyc" -delete @@ -26,7 +22,7 @@ nosetests --with-xunit \ --with-coverage \ --cover-erase \ --cover-package=$SCRIPTDIR/opnfv_testapi/cmd \ - --cover-package=$SCRIPTDIR/opnfv_testapi/commonn \ + --cover-package=$SCRIPTDIR/opnfv_testapi/common \ --cover-package=$SCRIPTDIR/opnfv_testapi/resources \ --cover-package=$SCRIPTDIR/opnfv_testapi/router \ --cover-xml \ -- cgit 1.2.3-korg