Skip to content

Latest commit

 

History

History
157 lines (93 loc) · 12.2 KB

CHANGELOG.md

File metadata and controls

157 lines (93 loc) · 12.2 KB
  • Fixed logic of new suppress_inline_failure_output. This option was doing the opposite of what it intended to do. #354
  • Minor documentation improvements #343
  • Fixed homepage link in gemspec #333 contributed by andyw8
  • Added Ruby 3.2 to the CI matrix #335 contributed by petergoldstein
  • Updated JUnitReporter to output a failure screenshot path when included in the minitest result #346 contributed by matteeyah
  • Fixed backwards fraction in ProgressReporter default format #348 contributed by notEthan
  • Added option suppress_inline_failure_output to SpecReporter to provide an explicit switch, separate from print_failure_summary, for suppressing inline failure messages. Until this change, the print_failure_summary would do both: print a failure/error summary after all tests run and suppress the inline failure messages. With this change print_failure_summary will just add a summary at the end of a test run, and it will no longer suppress the inline failure messages. #352 contributed by rthbound
  • Replaced use of MiniTest constant with Minitest #345 contributed by istana
  • Switched to Github actions #324 petergoldstein
  • Fixed misspelled method name in HTML reporter (percent_skipps -> percent_skips) #326 contributed by andyw8
  • Removed deprecated call to Object#=~ #318 contributed by etiennebarrie
  • Added option print_failure_summary to SpecReporter which causes failures and errors to print at the end of the test suite instead of inline as they happen #306 contributed by picandocodigo
  • Added support for environment variables to define the output location of HTML reports. #311 contributed by estebanbouza
  • Fixed ProgressReporter accuracy on skipped tests while detailed_skip is disabled #312 contributed by seven1m
  • Added file attribute to <testcase> tags in JUnitReporter for CircleCI compatibility #313 contributed by nbudin
  • Added timestamp option to JUnitReporter [#316] (#316) contributed by sipani909
  • fixed rare compatability issue between JUnitReporter and older versions of Minitest #272 contributed by chakrit
  • fixed JUnitReporter to use a relative file path if a file path is absolute #305
  • fixed MeanTimeReporter to reset by deleting previous run file #296 contributed by AnythonyClark
  • removed debug output from ProgressReporter #301 contributed by wvanbergen

1.4.2 (2019-10-26)

  • fixed DelegateReporter to delegate prerecord() #294 contributed by mame

1.4.1 (2019-10-10)

  • fixed Time.current replaced with Time.now in HTML reporter's remplate #293

1.4.0 (2019-10-06)

  • travis updated to include ruby 2.6 (#292 contributed by pvalena)
  • location option added to DefaultReporter #288 contributed by bmo
  • Date and time added to HTML report #287 contributed by cderche

1.4.0.beta1 (2019-08-28)

  • JUnitReporter changed to be compatible with the spec #286 contributed by dylanahsmith

1.3.8 (2019-08-14)

1.3.7 (2019-08-14)

  • added ability to specify output dir of JUnitReporter through ENV #277 countributed by KevinSjoberg
  • Added verbose functionality to ProgressReporter #278 contributed by senhalil

1.3.6 (2019-01-16)

1.3.5 (2018-09-30)

  • additional fix for reporting slowest suites by DefaultReporter #270
  • fixed the way DefaultReporter reports slowest suites #270
  • fixed problem with default report paths for MeanTimeReporter #269 contributed by duonoid
  • fixed the way JUnitReporter calculates relative path #258
  • SpecReporter do not print exception name any more (unless it is an test error) #264
  • Fixed loading error caused by fix for #265 see #267 and #268 for more details.
  • MINITEST_REPORTER env variable can be used to override reporter #256 (contributed by brettwgreen)
  • junit reporter changed to support mintest >= 5.11 #252 (contributed by Kevinrob)
  • all reporters changed to be compatible with minitest >= 5.11 (if not - report a bug ;)
  • fixed uninitialized time in junit reporter #251
  • format option added to progress reporter #240 (contributed by jorgesmu)
  • improved output of junit reporter #245 (contributed by jules2689)
  • SpecReporter regression for Minitest 5.11.1 fixed #250 (contrinuted by mbround18)
  • Reverted #236 (it creates too many problems)