From 60a7e06fbbd51dfebabee263506efd3fca13cd9e Mon Sep 17 00:00:00 2001 From: Gerrod Ubben Date: Mon, 8 Sep 2025 16:18:55 -0400 Subject: [PATCH] Remove testing of twine's --skip-existing due to twine feature removal --- .../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 4294ecc2..9ed002cc 100644 --- a/pulp_python/tests/functional/api/test_pypi_apis.py +++ b/pulp_python/tests/functional/api/test_pypi_apis.py @@ -225,26 +225,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(