mirror of
https://github.com/discourse/discourse.git
synced 2025-03-07 19:59:33 +00:00
Add options to skip core and install official plugins
This commit is contained in:
parent
6e3b2cc860
commit
0b9f39a406
@ -30,8 +30,16 @@ task 'docker:test' do
|
||||
ENV["RAILS_ENV"] = "test"
|
||||
|
||||
@good = run_or_fail("bundle exec rake db:create db:migrate")
|
||||
|
||||
if ENV["INSTALL_OFFICIAL_PLUGINS"]
|
||||
@good &&= run_or_fail("bundle exec rake plugin:install_all_official")
|
||||
end
|
||||
|
||||
unless ENV["JS_ONLY"]
|
||||
|
||||
unless ENV["SKIP_CORE"]
|
||||
@good &&= run_or_fail("bundle exec rspec")
|
||||
end
|
||||
|
||||
if ENV["LOAD_PLUGINS"]
|
||||
@good &&= run_or_fail("bundle exec rake plugin:spec")
|
||||
|
Loading…
x
Reference in New Issue
Block a user