Skip to content

Commit 6152c35

Browse files
committed
Fix link check
1 parent ecb1141 commit 6152c35

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/validate.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ jobs:
7676
run: pip install pytest-check-links
7777

7878
# TODO: we are not checking absolute links as pytest plugins does not support them
79+
# ignore github requests as we get 429 too many requests checking GitHub user profiles in about.html
80+
# ignore opensource.org since we are getting a 403 forbidden from this check run on github
7981
- name: Check links
8082
run: |
8183
pytest _site/ --check-links \
@@ -87,8 +89,8 @@ jobs:
8789
--check-links-ignore "https://twitter.com/.*" \
8890
--check-links-ignore "https://jupytercon.com" \
8991
--check-links-ignore "https://www.netapp.com" \
90-
--check-links-ignore "https://github.com/[^/]+/?$" # 429 too many requests checking GitHub user profiles in about.html \
91-
--check-links-ignore "https://opensource.org/licenses/BSD-3-Clause" # 403 forbidden from github
92+
--check-links-ignore "https://github.com/[^/]+/?$" \
93+
--check-links-ignore "https://opensource.org/licenses/BSD-3-Clause"
9294
9395
lighthouse:
9496

0 commit comments

Comments
 (0)