diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2017-01-23 17:40:45 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-01-23 17:40:45 +0000 |
commit | 47f445a47cbfd5a262ac94b9051883d8bfe71236 (patch) | |
tree | 9d467d0835086188a09fc1d49f8ffa2d925481f5 /jjb | |
parent | 387c212e28b6050a74affbb787c9525e6337ce08 (diff) | |
parent | 1bf58ff929b2e06899b29c066bb7aa2815a22d6c (diff) |
Merge "Add code coverage report in jenkins job"
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/releng/testapi-automate.yml | 21 | ||||
-rw-r--r-- | jjb/releng/testapi-run-tests.sh | 17 |
2 files changed, 20 insertions, 18 deletions
diff --git a/jjb/releng/testapi-automate.yml b/jjb/releng/testapi-automate.yml index c03835279..25ee687e2 100644 --- a/jjb/releng/testapi-automate.yml +++ b/jjb/releng/testapi-automate.yml @@ -49,6 +49,25 @@ builders: - run-unit-tests + publishers: + - junit: + results: nosetests.xml + - cobertura: + report-file: "coverage.xml" + only-stable: "true" + health-auto-update: "true" + stability-auto-update: "true" + zoom-coverage-chart: "true" + targets: + - files: + healthy: 10 + unhealthy: 20 + failing: 30 + - method: + healthy: 50 + unhealthy: 40 + failing: 30 + - job-template: name: 'testapi-automate-{stream}' @@ -98,7 +117,7 @@ name: run-unit-tests builders: - shell: | - bash ./jjb/releng/testapi-run-tests.sh + bash ./utils/test/testapi/run_test.sh - builder: name: docker-update diff --git a/jjb/releng/testapi-run-tests.sh b/jjb/releng/testapi-run-tests.sh deleted file mode 100644 index 47691ed04..000000000 --- a/jjb/releng/testapi-run-tests.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash -set -o errexit - -echo "Running unit tests..." - -# Creating virtual environment -virtualenv $WORKSPACE/testapi_test_venv -source $WORKSPACE/testapi_test_venv/bin/activate - -cd $WORKSPACE/utils/test/testapi/ - -# Install requirements -pip install -r requirements.txt -pip install -r test-requirements.txt - -# Run unit tests -bash run_test.sh |