Merge pull request #4230 from nicolasnoble/generate-coverage-always

Generate html reports always.
pull/4247/head
adelez 9 years ago
commit e3c52e9d3c
  1. 6
      tools/jenkins/docker_run_tests.sh

@ -48,7 +48,9 @@ rvm use ruby-2.1
mkdir -p reports
$RUN_TESTS_COMMAND
exit_code=0
$RUN_TESTS_COMMAND || exit_code=$?
cd reports
echo '<html><head></head><body>' > index.html
@ -61,3 +63,5 @@ echo '</body></html>' >> index.html
cd ..
zip -r reports.zip reports
exit $exit_code

Loading…
Cancel
Save