From 6f0978095aea1e833ff7490b7f3bdcb7e185d309 Mon Sep 17 00:00:00 2001 From: Gerrod Date: Wed, 19 Nov 2025 16:19:35 -0500 Subject: [PATCH 1/2] Merge pull request #1023 from gerrod3/fixt-pep-updates Update large fixtures count (cherry picked from commit c7cfdde34b5dfcb855530144da4b1ac3ee0ba176) --- pulp_python/tests/functional/constants.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pulp_python/tests/functional/constants.py b/pulp_python/tests/functional/constants.py index d420e1ba..f0e53046 100644 --- a/pulp_python/tests/functional/constants.py +++ b/pulp_python/tests/functional/constants.py @@ -144,19 +144,22 @@ "aiohttp", # matches 7 "bcrypt", # matches 8 "celery", # matches 13 + "crane", # matches 0 "Django", # matches 31 + "pulp-2to3-migration", # matches 2 "pytz", # matches 6 "scipy", # matches 23 "setuptools", # matches 2 "shelf-reader", # matches 2 + "twine", # matches 14 ] -PYTHON_LG_PACKAGE_COUNT = 92 +PYTHON_LG_PACKAGE_COUNT = 108 PYTHON_LG_FIXTURE_SUMMARY = {PYTHON_CONTENT_NAME: PYTHON_LG_PACKAGE_COUNT} PYTHON_LG_FIXTURE_COUNTS = { - "latest_3": 51, - "sdist": 28, - "bdist_wheel": 64, - "multi": 34, # keep_latest=1, package_types="bdist_wheel", prereleases=False + "latest_3": 59, + "sdist": 36, + "bdist_wheel": 72, + "multi": 36, # keep_latest=1, package_types="bdist_wheel", prereleases=False } DJANGO_LATEST_3 = 4 # latest version has 2 dists, each other has 1 From bdc2c56803fb5f7b2fdfca68001d865fab1145bc Mon Sep 17 00:00:00 2001 From: Gerrod Ubben Date: Wed, 19 Nov 2025 16:30:16 -0500 Subject: [PATCH 2/2] Fix pip install test --- pulp_python/tests/functional/api/test_consume_content.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pulp_python/tests/functional/api/test_consume_content.py b/pulp_python/tests/functional/api/test_consume_content.py index dca40728..a46358be 100644 --- a/pulp_python/tests/functional/api/test_consume_content.py +++ b/pulp_python/tests/functional/api/test_consume_content.py @@ -122,6 +122,7 @@ def install(cli_client, package, host=PYPI_URL): "pip", "install", "--no-deps", + "--no-build-isolation", "--trusted-host", urlsplit(host).hostname, "--trusted-host",