From fc0f36397361bb11fd161e6fc8072f9bd6e6be73 Mon Sep 17 00:00:00 2001 From: Guo Xiang Tan Date: Thu, 2 Mar 2017 16:58:48 +0800 Subject: [PATCH] Run plugin specs as well. --- lib/tasks/docker.rake | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/tasks/docker.rake b/lib/tasks/docker.rake index 179f2abf119..03234793ef4 100644 --- a/lib/tasks/docker.rake +++ b/lib/tasks/docker.rake @@ -32,6 +32,7 @@ task 'docker:test' do @good = run_or_fail("bundle exec rake db:create db:migrate") unless ENV["JS_ONLY"] @good &&= run_or_fail("bundle exec rspec") + @good &&= run_or_fail("bundle exec rake plugin:spec") end unless ENV["RUBY_ONLY"] @good &&= run_or_fail("eslint app/assets/javascripts")