From e2a3156360f41d9888b2046c4f23f91cff00c04a Mon Sep 17 00:00:00 2001 From: James Addison Date: Sun, 17 Mar 2024 18:29:11 +0000 Subject: [PATCH] [tests] Remove result-sharing between 'test_html5_output' and 'test_html_download' This prevents test failures from occurring when the 'test_html5_output' case reads unexpected data as written by 'test_html_download' --- tests/test_builders/test_build_html_5_output.py | 1 - tests/test_builders/test_build_html_download.py | 1 - 2 files changed, 2 deletions(-) diff --git a/tests/test_builders/test_build_html_5_output.py b/tests/test_builders/test_build_html_5_output.py index 9b50a106f0e..d88f00bb354 100644 --- a/tests/test_builders/test_build_html_5_output.py +++ b/tests/test_builders/test_build_html_5_output.py @@ -270,7 +270,6 @@ def checker(nodes): ]) @pytest.mark.sphinx('html', tags=['testtag'], confoverrides={'html_context.hckey_co': 'hcval_co'}) -@pytest.mark.test_params(shared_result='test_build_html_output') def test_html5_output(app, cached_etree_parse, fname, path, check): app.build() check_xpath(cached_etree_parse(app.outdir / fname), fname, path, check) diff --git a/tests/test_builders/test_build_html_download.py b/tests/test_builders/test_build_html_download.py index 1201c66647a..14332d86ef8 100644 --- a/tests/test_builders/test_build_html_download.py +++ b/tests/test_builders/test_build_html_download.py @@ -5,7 +5,6 @@ @pytest.mark.sphinx('html') -@pytest.mark.test_params(shared_result='test_build_html_output') def test_html_download(app): app.build()