16 lines
410 B
Bash
Executable File
16 lines
410 B
Bash
Executable File
#!/usr/bin/env bash
|
|
source scripts/jenkins-common.sh
|
|
|
|
# Combine the data files that were generated using -p
|
|
paver combine_jenkins_coverage
|
|
|
|
# Get the diff coverage and html reports for unit tests
|
|
NO_PREREQ_INSTALL=true paver coverage
|
|
|
|
# Get coverage reports for bok choy
|
|
# paver bokchoy_coverage
|
|
|
|
# JUnit test reporter will fail the build
|
|
# if it thinks test results are old
|
|
touch `find . -name *.xml` || true
|