mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 10:55:25 +08:00
FIX: An ember build is required to run the system tests (#20725)
This commit is contained in:
parent
cfee0cfee9
commit
293cb7bde2
|
@ -213,7 +213,10 @@ task "docker:test" do
|
||||||
@good &&= run_or_fail("bundle exec rspec #{params.join(" ")}".strip)
|
@good &&= run_or_fail("bundle exec rspec #{params.join(" ")}".strip)
|
||||||
end
|
end
|
||||||
|
|
||||||
@good &&= run_or_fail("bundle exec rspec spec/system".strip) if ENV["RUN_SYSTEM_TESTS"]
|
if ENV["RUN_SYSTEM_TESTS"]
|
||||||
|
@good &&= run_or_fail("bin/ember-cli --build")
|
||||||
|
@good &&= run_or_fail("bundle exec rspec spec/system")
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
unless ENV["SKIP_PLUGINS"]
|
unless ENV["SKIP_PLUGINS"]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user