10 lines
241 B
Bash
Executable File
10 lines
241 B
Bash
Executable File
#!/usr/bin/env bash
|
|
source scripts/jenkins-common.sh
|
|
|
|
# Run coverage again to get the diff coverage report
|
|
paver diff_coverage
|
|
|
|
# JUnit test reporter will fail the build
|
|
# if it thinks test results are old
|
|
touch `find . -name *.xml` || true
|