Fix missing import + output failing specs line by line

pull/11486/head
Christophe Bliard 2 years ago
parent da3504a87b
commit 554ec0a277
No known key found for this signature in database
GPG Key ID: 2BC07603210C3FA4
  1. 3
      script/github_pr_errors

@ -9,6 +9,7 @@ require 'pathname'
require 'json'
require 'rest-client'
require 'pry'
require 'yaml'
GITHUB_API_OPENPROJECT_PREFIX = "https://api.github.com/repos/opf/openproject"
RAILS_ROOT = Pathname.new(__dir__).dirname
@ -190,5 +191,5 @@ if is_successful
elsif errors.empty?
warn "No rspec errors found :-/"
else
puts errors.map { "'#{_1}'" }.join(" ")
puts errors.map { "'#{_1}'" }
end

Loading…
Cancel
Save