jenkins-report.sh 410 Bytes
Newer Older
1 2 3
#!/usr/bin/env bash
source scripts/jenkins-common.sh

4
# Combine the data files that were generated using -p
5
paver combine_jenkins_coverage
6 7

# Get the diff coverage and html reports for unit tests
8
NO_PREREQ_INSTALL=true paver coverage
9

10 11 12
# Get coverage reports for bok choy
# paver bokchoy_coverage

13 14 15
# JUnit test reporter will fail the build
# if it thinks test results are old
touch `find . -name *.xml` || true