Skip to content

Commit 2b34643

Browse files
authored
Merge pull request #957 from gerrod3/skip-exist-remove
Remove testing of twine's --skip-existing due to twine feature removal
2 parents 8c06232 + 60a7e06 commit 2b34643

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
@@ -225,26 +225,6 @@ def test_twine_upload(
225225
check=True,
226226
)
227227

228-
# Test re-uploading same packages with --skip-existing works
229-
output = subprocess.run(
230-
(
231-
"twine",
232-
"upload",
233-
"--repository-url",
234-
url,
235-
dist_dir / "*",
236-
"-u",
237-
username,
238-
"-p",
239-
password,
240-
"--skip-existing",
241-
),
242-
capture_output=True,
243-
check=True,
244-
text=True,
245-
)
246-
assert output.stdout.count("Skipping") == 2
247-
248228

249229
@pytest.mark.parallel
250230
def test_simple_redirect_with_publications(

0 commit comments

Comments
 (0)