diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-10-19 09:36:26 +0200 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2016-10-19 10:56:29 +0200 |
commit | 2a660565e4051364128555ed97c047832fe39cad (patch) | |
tree | 89148a09990243a129d69a2e0522b9c9b7e16c31 /jjb/functest | |
parent | ae1a2c2abfbd125af61abffd99bf3582d240c05e (diff) |
Trigger test unit execution on verify + Published for jenkins
Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
Change-Id: Ieb8e291d31479fff1c7cad941eb9be83cd4b670f
Depends-On: Icd958552fafb4e8dc58f9008586bcaf33862ccd4
Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
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 |