From fc640f31df26350bc760ed713c8f0922487e246b Mon Sep 17 00:00:00 2001 From: Gerhard Schlager Date: Tue, 2 Jun 2020 19:51:47 +0200 Subject: [PATCH] DEV: Skip interpolation key specs until build scripts can be fixed Currently the build fails because it runs the specs for all plugins even though the current source of those plugins isn't pulled from git. --- spec/integrity/i18n_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/integrity/i18n_spec.rb b/spec/integrity/i18n_spec.rb index 7871a987293..0d44d5ea5dd 100644 --- a/spec/integrity/i18n_spec.rb +++ b/spec/integrity/i18n_spec.rb @@ -167,7 +167,7 @@ describe "i18n integrity checks" do expect(invalid_relative_image_sources).to be_empty, "The following keys have relative image sources, but do not start with %{base_url} or %{base_path}:\n\n#{keys}" end - it "uses the %{key} as interpolation key format" do + skip "uses the %{key} as interpolation key format" do keys = invalid_interpolation_key_format.keys.join("\n") expect(invalid_interpolation_key_format).to be_empty, "The following keys use {{key}} instead of %{key} for interpolation keys:\n\n#{keys}" end