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.
- Fork it ( https://github.com/ci-reporter/ci_reporter_minitest/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Add a failing test.
- Commit your changes (
git commit -am 'Add some feature'
) - Ensure tests pass.
- Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request