DEV: Add 20m timeout to system tests (#21323)

This commit is contained in:
Daniel Waterworth 2023-05-01 13:23:48 -05:00 committed by GitHub
parent d697fd5766
commit a4dd758f5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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("bundle exec rspec spec/system")
@good &&= run_or_fail("timeout --verbose 1200 bundle exec rspec spec/system")
end
end
@ -228,7 +228,10 @@ task "docker:test" do
end
if ENV["RUN_SYSTEM_TESTS"]
@good &&= run_or_fail("LOAD_PLUGINS=1 bundle exec rspec plugins/*/spec/system".strip)
@good &&=
run_or_fail(
"LOAD_PLUGINS=1 timeout --verbose 1200 bundle exec rspec plugins/*/spec/system".strip,
)
end
end
end