From 79267e1e7634208a085ac0f7dc8292af2a4b6bda Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Tue, 13 Dec 2022 09:58:58 +0000 Subject: [PATCH] rubocop_rspec: fix incorrect failures. --- Library/.rubocop_rspec.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Library/.rubocop_rspec.yml b/Library/.rubocop_rspec.yml index a9fc375d4b..a826948f21 100644 --- a/Library/.rubocop_rspec.yml +++ b/Library/.rubocop_rspec.yml @@ -37,3 +37,10 @@ RSpec/MultipleMemoizedHelpers: # Annoying to have these autoremoved. RSpec/Focus: AutoCorrect: false + +# Gets confused on these tests for a `skip` DSL +RSpec/PendingWithoutReason: + Exclude: + - "**/dependency_expansion_spec.rb" + - "**/livecheck/skip_conditions_spec.rb" + - "**/livecheck_spec.rb"