From 6e3165ddc1e661e869f90600cae023c66f5ffd3b Mon Sep 17 00:00:00 2001 From: Gerrod Date: Thu, 11 Sep 2025 14:36:19 -0400 Subject: [PATCH] Merge pull request #960 from gerrod3/patchback/backports/3.13/2b34643299835462a4add6b3b76d2d8309bf91d9/pr-957 Backport Remove testing of twine's --skip-existing due to twine feature removal [3.13] (cherry picked from commit aa9a794380323156ed0c13d3ad7d12c61bb0a793) --- .../tests/functional/api/test_pypi_apis.py | 20 ------------------- 1 file changed, 20 deletions(-) diff --git a/pulp_python/tests/functional/api/test_pypi_apis.py b/pulp_python/tests/functional/api/test_pypi_apis.py index 1e557f36..034f8f83 100644 --- a/pulp_python/tests/functional/api/test_pypi_apis.py +++ b/pulp_python/tests/functional/api/test_pypi_apis.py @@ -224,26 +224,6 @@ def test_twine_upload( check=True, ) - # Test re-uploading same packages with --skip-existing works - output = subprocess.run( - ( - "twine", - "upload", - "--repository-url", - url, - dist_dir / "*", - "-u", - username, - "-p", - password, - "--skip-existing", - ), - capture_output=True, - check=True, - text=True - ) - assert output.stdout.count("Skipping") == 2 - @pytest.mark.parallel def test_simple_redirect_with_publications(