From 74c40c5ce58cb84e8f884453f360b7b0835063f7 Mon Sep 17 00:00:00 2001 From: Becka Lelew Date: Thu, 1 Dec 2022 15:03:35 +0000 Subject: [PATCH] Remove build_schemas from default rake task This task is intended to be run separately from the default rake task for publishing api. We still build schemas as part of our CI process (in order to check that the schemas on the PR are up to date) so we will still have coverage. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 08636863d..4fb4b363e 100644 --- a/Rakefile +++ b/Rakefile @@ -19,4 +19,4 @@ rescue LoadError end Rake::Task[:default].clear if Rake::Task.task_defined?(:default) -task default: %i[rubocop spec pact:verify build_schemas] +task default: %i[rubocop spec pact:verify]