DEV: Increase docker.rake system test timeout time to match CI (#21339)

This commit is contained in:
Daniel Waterworth 2023-05-02 12:12:03 -05:00 committed by GitHub
parent 616f4a1118
commit bc236119d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -215,7 +215,7 @@ task "docker:test" do
if ENV["RUN_SYSTEM_TESTS"]
@good &&= run_or_fail("bin/ember-cli --build")
@good &&= run_or_fail("timeout --verbose 1200 bundle exec rspec spec/system")
@good &&= run_or_fail("timeout --verbose 1800 bundle exec rspec spec/system")
end
end
@ -230,7 +230,7 @@ task "docker:test" do
if ENV["RUN_SYSTEM_TESTS"]
@good &&=
run_or_fail(
"LOAD_PLUGINS=1 timeout --verbose 1200 bundle exec rspec plugins/*/spec/system".strip,
"LOAD_PLUGINS=1 timeout --verbose 1600 bundle exec rspec plugins/*/spec/system".strip,
)
end
end