class Hatchet::FailedTestError

Public Class Methods

new(app, output) click to toggle source
Calls superclass method
# File lib/hatchet/test_run.rb, line 5
def initialize(app, output)
  msg = "Could not run tests on pipeline id: '#{app.pipeline_id}' (#{app.repo_name}) at path: '#{app.original_source_code_directory}'\n" <<
        " if this was expected add `allow_failure: true` to your hatchet initialization hash.\n" <<
        "output:\n" <<
        "#{output}"
  super(msg)
end