Skip to content

Commit c62381b

Browse files
committed
Remove testing of twine's --skip-existing due to twine feature removal
1 parent 9898e22 commit c62381b

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

pulp_python/tests/functional/api/test_pypi_apis.py

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -207,26 +207,6 @@ def test_twine_upload(self):
207207
check=True,
208208
)
209209

210-
# Test re-uploading same packages with --skip-existing works
211-
output = subprocess.run(
212-
(
213-
"twine",
214-
"upload",
215-
"--repository-url",
216-
url,
217-
self.dists_dir.name + "/*",
218-
"-u",
219-
username,
220-
"-p",
221-
password,
222-
"--skip-existing",
223-
),
224-
capture_output=True,
225-
check=True,
226-
text=True
227-
)
228-
self.assertEqual(output.stdout.count("Skipping"), 2)
229-
230210

231211
class PyPISimpleApi(TestCaseUsingBindings, TestHelpersMixin):
232212
"""Tests that the simple api is correct."""

0 commit comments

Comments
 (0)