Coder Social home page Coder Social logo

olleolleolle / minitest-reporters Goto Github PK

View Code? Open in Web Editor NEW

This project forked from minitest-reporters/minitest-reporters

0.0 2.0 0.0 634 KB

:page_with_curl: Create customizable MiniTest output formats.

Home Page: https://github.com/kern/minitest-reporters

License: MIT License

Ruby 94.24% HTML 5.76%

minitest-reporters's Introduction

minitest-reporters - create customizable Minitest output formats

Join the chat at https://gitter.im/kern/minitest-reporters Gem Version Build Status Windows build status

Death to haphazard monkey-patching! Extend Minitest through simple hooks.

Installation

gem install minitest-reporters

Usage

In your test_helper.rb file, add the following lines:

require "minitest/reporters"
Minitest::Reporters.use!

This will swap out the Minitest runner to the custom one used by minitest-reporters and use the correct reporters for Textmate, Rubymine, and the console. If you would like to write your own reporter, just include Minitest::Reporter and override the methods you'd like. Take a look at the provided reporters for examples.

Don't like the default progress bar reporter?

Minitest::Reporters.use! Minitest::Reporters::SpecReporter.new

Want to use multiple reporters?

Minitest::Reporters.use! [Minitest::Reporters::SpecReporter.new, Minitest::Reporters::JUnitReporter.new]

If RubyMate, TeamCity, RubyMine or VIM presence is detected, the reporter will be automatically chosen, regardless of any reporters passed to the use! method.

To override this behavior, you may set the ENV variable MINITEST_REPORTER:

export MINITEST_REPORTER=JUnitReporter

Detection of those systems is based on presence of certain ENV variables and are evaulated in the following order:

 MINITEST_REPORTER => use reporter indicated in env variable
 TM_PID => use RubyMateReporter
 RM_INFO => use RubyMineReporter
 TEAMCITY_VERSION => use RubyMineReporter
 VIM => disable all Reporters

The following reporters are provided:

Minitest::Reporters::DefaultReporter  # => Redgreen-capable version of standard Minitest reporter
Minitest::Reporters::SpecReporter     # => Turn-like output that reads like a spec
Minitest::Reporters::ProgressReporter # => Fuubar-like output with a progress bar
Minitest::Reporters::RubyMateReporter # => Simple reporter designed for RubyMate
Minitest::Reporters::RubyMineReporter # => Reporter designed for RubyMine IDE and TeamCity CI server
Minitest::Reporters::JUnitReporter    # => JUnit test reporter designed for JetBrains TeamCity
Minitest::Reporters::MeanTimeReporter # => Produces a report summary showing the slowest running tests
Minitest::Reporters::HtmlReporter     # => Generates an HTML report of the test results

Options can be passed to these reporters at construction-time, e.g. to force color output from DefaultReporter:

Minitest::Reporters.use! [Minitest::Reporters::DefaultReporter.new(:color => true)]

Screenshots

Default Reporter

Default Reporter

Spec Reporter

Spec Reporter

Progress Reporter

Progress Reporter

Caveats

If you are using minitest-reporters with ActiveSupport 3.x, make sure that you require ActiveSupport before invoking Minitest::Reporters.use!. Minitest-reporters fixes incompatibilities caused by monkey patches in ActiveSupport 3.x. ActiveSupport 4.x is unaffected.

Rails Backtrace Filtering and Custom Backtrace Filtering

Minitest lets you configures your own, custom backtrace filter via Minitest.backtrace_filter=. If you're using Rails, then by default Minitest.backtrace_filter is a filter designed specially for Rails.

But minitest-reporters overwrites Minitest.backtrace_filter by default. That means it will overwrite your custom filter and Rails' default filter. (You'll know this is happening if you see overly long or otherwise unexpected backtraces.)

To avoid that, you must manually tell minitest-reporters which filter to use. In Rails, do this in test_helper.rb:

    Minitest::Reporters.use!(
      Minitest::Reporters::DefaultReporter.new,
      ENV,
      Minitest.backtrace_filter
    )

The third parameter to .use!, in this case Minitest.backtrace_filter, should be a filter object. In the above example, you're telling minitest-reporters to use the filter that Rails has already set.

Note on Patches/Pull Requests

  • Fork the project.
  • Make your feature addition or bug fix.
  • Add tests for it. This is important so I don't break it in a future version unintentionally.
  • Commit, but do not mess with the Rakefile. If you want to have your own version, that is fine but bump the version in a commit by itself in another branch so I can ignore it when I pull.
  • Send me a pull request. Bonus points for git flow feature branches.

Resources

License

Minitest-reporters is licensed under the MIT License. See LICENSE for details.

minitest-reporters's People

Contributors

agios avatar andruby avatar bensomers avatar bramswenson avatar brandonweiss avatar carols10cents avatar chiku avatar dzajic avatar ferrous26 avatar gavinlaking avatar grosser avatar iromeo avatar jules2689 avatar kevinrob avatar kevintyll avatar matt-glover avatar mbround18 avatar mikemcquaid avatar ojak avatar os97673 avatar phlipper avatar randycoulman avatar rthbound avatar ryankon avatar samcday avatar senhalil avatar shammond42 avatar tjschuck avatar vadviktor avatar zhomart avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.