HTML Proofs take too long to run
As a devportal maintainer, I would like to run rake test:proof
in a more reasonable amount of time, so it can be checked more frequently.
Running these proofs will help find typos and other problems related to navigating the devportal. But these checks can be overly sensitive to external links.
Right now, running rake test:proof
takes too long and results in several http_status: 429
responses. This implies that these tests are being rate-limited by external links. The simple solution is to disable external link checks (disable_external: true
).
A more comprehensive solution is to enable cache, as defined by:
https://github.com/gjtorikian/html-proofer#configuring-caching
AC
-
Running rake test:proof
is now less painful
Edited by inertia