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"
|
ENV["RAILS_ENV"] = "test"
|
||||||
|
|
||||||
@good = run_or_fail("bundle exec rake db:create db:migrate")
|
@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["JS_ONLY"]
|
||||||
@good &&= run_or_fail("bundle exec rspec")
|
|
||||||
|
unless ENV["SKIP_CORE"]
|
||||||
|
@good &&= run_or_fail("bundle exec rspec")
|
||||||
|
end
|
||||||
|
|
||||||
if ENV["LOAD_PLUGINS"]
|
if ENV["LOAD_PLUGINS"]
|
||||||
@good &&= run_or_fail("bundle exec rake plugin:spec")
|
@good &&= run_or_fail("bundle exec rake plugin:spec")
|
||||||
|
|
Loading…
Reference in New Issue