We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9898e22 commit c62381bCopy full SHA for c62381b
pulp_python/tests/functional/api/test_pypi_apis.py
@@ -207,26 +207,6 @@ def test_twine_upload(self):
207
check=True,
208
)
209
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
-
230
231
class PyPISimpleApi(TestCaseUsingBindings, TestHelpersMixin):
232
"""Tests that the simple api is correct."""
0 commit comments