Skip to content

Commit 25d143f

Browse files
authored
TEST-#0000: fix 'push-to-master / test docs' CI job (modin-project#6927)
Signed-off-by: Anatoly Myachev <anatoly.myachev@intel.com>
1 parent c555f59 commit 25d143f

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

modin/test/test_docstring_urls.py

+13
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,19 @@ def doc_urls(get_generated_doc_urls):
3636

3737
def test_all_urls_exist(doc_urls):
3838
broken = []
39+
# TODO: remove the hack after pandas fixes it
40+
broken_urls = (
41+
"https://pandas.pydata.org/pandas-docs/version/2.2.0/reference/api/pandas.DataFrame.flags.html",
42+
"https://pandas.pydata.org/pandas-docs/version/2.2.0/reference/api/pandas.Series.info.html",
43+
"https://pandas.pydata.org/pandas-docs/version/2.2.0/reference/api/pandas.DataFrame.isetitem.html",
44+
"https://pandas.pydata.org/pandas-docs/version/2.2.0/reference/api/pandas.Series.swapaxes.html",
45+
"https://pandas.pydata.org/pandas-docs/version/2.2.0/reference/api/pandas.DataFrame.to_numpy.html",
46+
"https://pandas.pydata.org/pandas-docs/version/2.2.0/reference/api/pandas.Series.axes.html",
47+
"https://pandas.pydata.org/pandas-docs/version/2.2.0/reference/api/pandas.Series.divmod.html",
48+
"https://pandas.pydata.org/pandas-docs/version/2.2.0/reference/api/pandas.Series.rdivmod.html",
49+
)
50+
for broken_url in broken_urls:
51+
doc_urls.remove(broken_url)
3952

4053
def _test_url(url):
4154
try:

0 commit comments

Comments
 (0)