From 3b29eb69ab2cd0105f0f83ea6fbcc4b3fbab36d7 Mon Sep 17 00:00:00 2001 From: Clinton Wolfe Date: Mon, 21 Dec 2020 15:17:24 -0500 Subject: [PATCH] Remove windows test skip timebomb Signed-off-by: Clinton Wolfe --- test/helper.rb | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/test/helper.rb b/test/helper.rb index 7defea2ca..3c5b8c041 100644 --- a/test/helper.rb +++ b/test/helper.rb @@ -147,11 +147,10 @@ class Minitest::Test skip msg end - # These tests are being worked on. There is an ongoing discussion whether the - # 'bomb' is helpful as it requires rebases of all active community PRs when - # we hit it. Context: https://github.com/inspec/inspec/pull/5063 + # These tests are being worked on. These are github issues for them. + # Related: https://github.com/inspec/inspec/pull/5063 def skip_windows! - skip_until 2021, 1, 1, "These have never passed" if windows? + skip "These have never passed" if windows? end def unmock(&blk)