mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 00:33:44 +08:00
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"]
|
params << "--seed #{ENV["RSPEC_SEED"]}" if ENV["RSPEC_SEED"]
|
||||||
end
|
end
|
||||||
|
|
||||||
@good &&= run_or_fail("bin/ember-cli --build")
|
|
||||||
|
|
||||||
if ENV["USE_TURBO"]
|
if ENV["USE_TURBO"]
|
||||||
@good &&=
|
@good &&=
|
||||||
run_or_fail(
|
run_or_fail("bundle exec ./bin/turbo_rspec --verbose #{params.join(" ")}".strip)
|
||||||
"bundle exec ./bin/turbo_rspec --enable-system-tests --verbose #{params.join(" ")}".strip,
|
|
||||||
)
|
|
||||||
else
|
else
|
||||||
@good &&= run_or_fail("bundle exec rspec #{params.join(" ")}".strip)
|
@good &&= run_or_fail("bundle exec rspec #{params.join(" ")}".strip)
|
||||||
end
|
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
|
end
|
||||||
|
|
||||||
unless ENV["SKIP_PLUGINS"]
|
unless ENV["SKIP_PLUGINS"]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user