Skip to content

Commit

Permalink
let's output errors to $stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleg Sukhodolsky authored and denofevil committed Jun 5, 2013
1 parent bc0b376 commit 376b996
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
require 'teamcity/utils/runner_utils'
require 'teamcity/utils/url_formatter'
rescue LoadError
MiniTest::Unit.runner.output.puts("====================================================================================================\n")
MiniTest::Unit.runner.output.puts("RubyMine reporter works only if it test was launched using RubyMine IDE or TeamCity CI server !!!\n")
MiniTest::Unit.runner.output.puts("====================================================================================================\n")
MiniTest::Unit.runner.output.puts("Using default results reporter...\n")
$stderr.puts("====================================================================================================\n")
$stderr.puts("RubyMine reporter works only if it test was launched using RubyMine IDE or TeamCity CI server !!!\n")
$stderr.puts("====================================================================================================\n")
$stderr.puts("Using default results reporter...\n")
else

module Minitest
Expand Down

0 comments on commit 376b996

Please sign in to comment.