This reverts commit 40acb9a111
.
Reverting because test runs are breaking due to this change
This commit is contained in:
parent
b3bef96744
commit
07c29f3066
|
@ -224,16 +224,17 @@ task "docker:test" do
|
|||
params << "--seed #{ENV["RSPEC_SEED"]}" if ENV["RSPEC_SEED"]
|
||||
end
|
||||
|
||||
@good &&= run_or_fail("bin/ember-cli --build")
|
||||
|
||||
if ENV["USE_TURBO"]
|
||||
@good &&=
|
||||
run_or_fail(
|
||||
"bundle exec ./bin/turbo_rspec --enable-system-tests --verbose #{params.join(" ")}".strip,
|
||||
)
|
||||
run_or_fail("bundle exec ./bin/turbo_rspec --verbose #{params.join(" ")}".strip)
|
||||
else
|
||||
@good &&= run_or_fail("bundle exec rspec #{params.join(" ")}".strip)
|
||||
end
|
||||
|
||||
if ENV["RUN_SYSTEM_TESTS"]
|
||||
@good &&= run_or_fail("bin/ember-cli --build")
|
||||
@good &&= run_or_fail("timeout --verbose 1800 bundle exec rspec spec/system")
|
||||
end
|
||||
end
|
||||
|
||||
unless ENV["SKIP_PLUGINS"]
|
||||
|
|
Loading…
Reference in New Issue