File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 76
76
run : pip install pytest-check-links
77
77
78
78
# 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
79
81
- name : Check links
80
82
run : |
81
83
pytest _site/ --check-links \
87
89
--check-links-ignore "https://twitter.com/.*" \
88
90
--check-links-ignore "https://jupytercon.com" \
89
91
--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"
92
94
93
95
lighthouse :
94
96
You can’t perform that action at this time.
0 commit comments