Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pulp_python/tests/functional/api/test_consume_content.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ def test_pip_consume_content(
"install",
"--no-deps",
"--no-cache-dir",
"--no-build-isolation",
"--force-reinstall",
"--trusted-host",
urlsplit(distro.base_url).hostname,
Expand Down
1 change: 1 addition & 0 deletions pulp_python/tests/functional/api/test_domains.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ def test_domain_pypi_apis(
"pip",
"install",
"--no-deps",
"--no-build-isolation",
"--trusted-host",
urlsplit(distro.base_url).hostname,
"-i",
Expand Down
13 changes: 8 additions & 5 deletions pulp_python/tests/functional/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,19 +124,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
Expand Down