Skip to content

Commit

Permalink
fix: Remove repository argument in twine
Browse files Browse the repository at this point in the history
  • Loading branch information
relekang committed Nov 22, 2018
1 parent c4ae7b8 commit e24543b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion semantic_release/pypi.py
Expand Up @@ -21,7 +21,6 @@ def upload_to_pypi(
run('python setup.py {}'.format(dists))
twine_upload.upload(
dists=['dist/*'],
repository='pypi',
sign=False,
identity=None,
username=username,
Expand Down
1 change: 0 additions & 1 deletion tests/test_pypi.py
Expand Up @@ -16,7 +16,6 @@ def test_upload_without_arguments(self, mock_upload, mock_run):
)
mock_upload.assert_called_once_with(
dists=['dist/*'],
repository='pypi',
sign=False,
identity=None,
username=None,
Expand Down

0 comments on commit e24543b

Please sign in to comment.