Connects Minitest to CI::Reporter, and then to your CI system.
The latest release of Minitest 5.x is supported.
Add this line to your application's Gemfile:
gem 'ci_reporter_minitest'
And then install it:
$ bundle
Require the reporter in your Rakefile, and ensure that
ci:setup:minitest
is a dependency of your minitest task:
require 'ci/reporter/rake/minitest'
# ...
# Rake code that creates a task called `:minitest`
# ...
task :minitest => 'ci:setup:minitest'
Refer to the shared documentation for details on setting up CI::Reporter.
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)