From 586c0cd178f1d36692717dff0707078bb8f899ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20B=2E?= <2589111+jfbu@users.noreply.github.com> Date: Wed, 7 Aug 2024 17:04:07 +0200 Subject: [PATCH] Revert "Mark ``test_build_manpage`` as XFAIL following changes in Docutils master" (#12734) This reverts commit 1ed4ca7. Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> --- tests/test_builders/test_build_manpage.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/test_builders/test_build_manpage.py b/tests/test_builders/test_build_manpage.py index aef507c6f..544ddd4e2 100644 --- a/tests/test_builders/test_build_manpage.py +++ b/tests/test_builders/test_build_manpage.py @@ -7,8 +7,6 @@ from sphinx.builders.manpage import default_man_pages from sphinx.config import Config -@pytest.mark.xfail(docutils.__version_info__[:2] > (0, 21), - reason='Docutils has removed the reference key in master') @pytest.mark.sphinx('man') def test_all(app): app.build(force_all=True) @@ -49,8 +47,6 @@ def test_man_make_section_directory(app): assert (app.outdir / 'man1' / 'projectnamenotset.1').exists() -@pytest.mark.xfail(docutils.__version_info__[:2] > (0, 21), - reason='Docutils has removed the reference key in master') @pytest.mark.sphinx('man', testroot='directive-code') def test_captioned_code_block(app): app.build(force_all=True)