From 7d2578b1ffbc579c430c3cf723cadfed79fc4dcc Mon Sep 17 00:00:00 2001 From: Eric Sorenson Date: Mon, 29 Apr 2024 16:16:30 -0700 Subject: [PATCH] Remove version lock from html-proofer There have been 2 major revs of HTML-Proofer since the one we pinned. The current one is causing flaky tests - it's missing clear errors w/internal links and only reports the first error it finds rather than running to completion and reporting all of them. The latest version (5.0.8 at the moment) does catch all of the errors but has a problem locally where UTF-8 encoded anchor links are not properly decoded. This might be a problem local to me though; I coded up a spec test in html-proofer with an exact copy-paste of one of the failing links and ... it passes there. So i'll unpin this and see if there's some local gem issue that's causing this on my machine and maybe it works in the Actions env. --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index a76c33fb51c..ca9b7428d0e 100644 --- a/Gemfile +++ b/Gemfile @@ -3,6 +3,6 @@ source "https://rubygems.org" gem "github-pages", group: :jekyll_plugins group :test do - gem "html-proofer", "~> 3.19.4" + gem "html-proofer" gem "rake" end