Parse VOLTHA unit test results
Change-Id: Ib80b16e8eb66c24195363e1e920c246e5379e388
diff --git a/jjb/voltha-unit-test.yaml b/jjb/voltha-unit-test.yaml
index 3d01448..610b0d4 100644
--- a/jjb/voltha-unit-test.yaml
+++ b/jjb/voltha-unit-test.yaml
@@ -42,10 +42,24 @@
builders:
- shell: |
#!/usr/bin/env bash
- set -eu -o pipefail
+ set -e -o pipefail
rm -rf venv-linux
source ./env.sh
make utest-with-coverage
+ publishers:
+ - junit:
+ results: "**/nosetests.xml"
+ - cobertura:
+ report-file: "**/coverage.xml"
+ targets:
+ - files:
+ healthy: 80
+ unhealthy: 0
+ failing: 0
+ - method:
+ healthy: 50
+ unhealthy: 0
+ failing: 0