Skip to content

Commit

Permalink
Allow retries for actionview test:ujs
Browse files Browse the repository at this point in the history
actionview test:ujs tests are executed in Saucelabs env that
occasionally fails
  • Loading branch information
guilleiguaran committed Jun 22, 2023
1 parent e510cc4 commit 42db97a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pipeline-generate
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,9 @@ steps_for("actioncable", "test:integration", service: "default") do |x|
end
end
if REPO_ROOT.join("actionview/Rakefile").read.include?("task :ujs")
step_for("actionview", "test:ujs", service: "actionview")
step_for("actionview", "test:ujs", service: "actionview") do |x|
x["retry"] = { "automatic" => { "limit" => 3 } }
end
end
steps_for("activejob", "test:integration", service: "activejob") do |x|
# Enable soft_fail until the problem in queue_classic is solved.
Expand Down

0 comments on commit 42db97a

Please sign in to comment.