diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-10-28 07:23:05 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-10-28 07:23:05 +0000 |
commit | b20e6f4e2e172ea33c6417733e79f8b4678be263 (patch) | |
tree | a215a8718fe36098c66cd4a7f32b2f5d220610fa /jjb/functest | |
parent | f901144368a524e617da0558ec32bd1f5f1789c2 (diff) | |
parent | 2a660565e4051364128555ed97c047832fe39cad (diff) |
Merge "Trigger test unit execution on verify + Published for jenkins"
Diffstat (limited to 'jjb/functest')
-rw-r--r-- | jjb/functest/functest-project-jobs.yml | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/jjb/functest/functest-project-jobs.yml b/jjb/functest/functest-project-jobs.yml index a9845459f..373ed89cd 100644 --- a/jjb/functest/functest-project-jobs.yml +++ b/jjb/functest/functest-project-jobs.yml @@ -61,5 +61,33 @@ pattern: 'docs/**|.gitignore' builders: + - functest-unit-tests-and-docs-build + + 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 builders +################################ + +- builder: + name: functest-unit-tests-and-docs-build + builders: - shell: | - echo "Nothing to verify!" + $WORKSPACE/run_unit_tests.sh |