From f073100ae4b30e53712b5bf0eb2fb210508834fa Mon Sep 17 00:00:00 2001 From: Jitka Halova Date: Wed, 15 Jul 2026 19:54:41 +0200 Subject: [PATCH] Remove pypi_json tests from paralell run --- pulp_python/tests/functional/api/test_pypi_apis.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pulp_python/tests/functional/api/test_pypi_apis.py b/pulp_python/tests/functional/api/test_pypi_apis.py index 48a3179d..37c94c40 100644 --- a/pulp_python/tests/functional/api/test_pypi_apis.py +++ b/pulp_python/tests/functional/api/test_pypi_apis.py @@ -245,8 +245,9 @@ def test_simple_redirect_with_publications( assert response.url == str(urljoin(pulp_content_url, f"{distro.base_path}/simple/")) -@pytest.mark.parallel -def test_pypi_json(python_remote_factory, python_repo_with_sync, python_distribution_factory): +def test_pypi_json( + delete_orphans_pre, python_remote_factory, python_repo_with_sync, python_distribution_factory +): """Checks the data of `pypi/{package_name}/json` endpoint.""" remote = python_remote_factory(policy="immediate") repo = python_repo_with_sync(remote) @@ -260,8 +261,8 @@ def test_pypi_json(python_remote_factory, python_repo_with_sync, python_distribu assert_pypi_json(response.json()) -@pytest.mark.parallel def test_pypi_json_content_app( + delete_orphans_pre, python_remote_factory, python_repo_with_sync, python_publication_factory,