Skip to content

Commit e40e225

Browse files
authored
Merge pull request #1025 from pulp/patchback/backports/3.12/c7cfdde34b5dfcb855530144da4b1ac3ee0ba176/pr-1023
[PR #1023/c7cfdde3 backport][3.12] Update large fixtures count
2 parents 7ac81ce + b3241db commit e40e225

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

pulp_python/tests/functional/api/test_consume_content.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ def test_pip_consume_content(
2121
"install",
2222
"--no-deps",
2323
"--no-cache-dir",
24+
"--no-build-isolation",
2425
"--force-reinstall",
2526
"--trusted-host",
2627
urlsplit(distro.base_url).hostname,

pulp_python/tests/functional/api/test_domains.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,7 @@ def test_domain_pypi_apis(
277277
"pip",
278278
"install",
279279
"--no-deps",
280+
"--no-build-isolation",
280281
"--trusted-host",
281282
urlsplit(distro.base_url).hostname,
282283
"-i",

pulp_python/tests/functional/constants.py

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -124,19 +124,22 @@
124124
"aiohttp", # matches 7
125125
"bcrypt", # matches 8
126126
"celery", # matches 13
127+
"crane", # matches 0
127128
"Django", # matches 31
129+
"pulp-2to3-migration", # matches 2
128130
"pytz", # matches 6
129131
"scipy", # matches 23
130132
"setuptools", # matches 2
131133
"shelf-reader", # matches 2
134+
"twine", # matches 14
132135
]
133-
PYTHON_LG_PACKAGE_COUNT = 92
136+
PYTHON_LG_PACKAGE_COUNT = 108
134137
PYTHON_LG_FIXTURE_SUMMARY = {PYTHON_CONTENT_NAME: PYTHON_LG_PACKAGE_COUNT}
135138
PYTHON_LG_FIXTURE_COUNTS = {
136-
"latest_3": 51,
137-
"sdist": 28,
138-
"bdist_wheel": 64,
139-
"multi": 34, # keep_latest=1, package_types="bdist_wheel", prereleases=False
139+
"latest_3": 59,
140+
"sdist": 36,
141+
"bdist_wheel": 72,
142+
"multi": 36, # keep_latest=1, package_types="bdist_wheel", prereleases=False
140143
}
141144

142145
DJANGO_LATEST_3 = 4 # latest version has 2 dists, each other has 1

0 commit comments

Comments
 (0)