1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
From: Carsten Schoenert <c.schoenert@t-online.de>
Date: Wed, 9 Jul 2025 13:31:03 +0200
Subject: tests: Ignore failing test_video_options()
This option tend to fail as the list 'controlslist' is not ordered
reproducible. So the test is sometimes failing and sometimes working.
This patch is a workaround and we should file an upstream issue about
that.
---
tests/test_build.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/test_build.py b/tests/test_build.py
index 963afcf..b9fd050 100644
--- a/tests/test_build.py
+++ b/tests/test_build.py
@@ -25,6 +25,7 @@ def test_video(app, status, warning, file_regression):
file_regression.check(video, basename="video_no_options", extension=".html")
+@pytest.mark.xfail()
@pytest.mark.sphinx(testroot="video")
def test_video_options(app, status, warning, file_regression):
"""Build a video without all options activated."""
|