Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
beb9809c
Commit
beb9809c
authored
Aug 03, 2016
by
Donald Stufft
Browse files
Options
Browse Files
Download
Plain Diff
Merge 3.3
parents
e1a61f17
e639c9f6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
config.py
config.py
+1
-1
tests/test_config.py
tests/test_config.py
+2
-2
tests/test_upload.py
tests/test_upload.py
+2
-2
No files found.
config.py
View file @
beb9809c
...
...
@@ -21,7 +21,7 @@ password:%s
class
PyPIRCCommand
(
Command
):
"""Base command that knows how to handle the .pypirc file
"""
DEFAULT_REPOSITORY
=
'https://upload.pypi.
io
/legacy/'
DEFAULT_REPOSITORY
=
'https://upload.pypi.
org
/legacy/'
DEFAULT_REALM
=
'pypi'
repository
=
None
realm
=
None
...
...
tests/test_config.py
View file @
beb9809c
...
...
@@ -87,7 +87,7 @@ class PyPIRCCommandTestCase(support.TempdirManager,
config
=
list
(
sorted
(
config
.
items
()))
waited
=
[(
'password'
,
'secret'
),
(
'realm'
,
'pypi'
),
(
'repository'
,
'https://upload.pypi.
io
/legacy/'
),
(
'repository'
,
'https://upload.pypi.
org
/legacy/'
),
(
'server'
,
'server1'
),
(
'username'
,
'me'
)]
self
.
assertEqual
(
config
,
waited
)
...
...
@@ -96,7 +96,7 @@ class PyPIRCCommandTestCase(support.TempdirManager,
config
=
cmd
.
_read_pypirc
()
config
=
list
(
sorted
(
config
.
items
()))
waited
=
[(
'password'
,
'secret'
),
(
'realm'
,
'pypi'
),
(
'repository'
,
'https://upload.pypi.
io
/legacy/'
),
(
'repository'
,
'https://upload.pypi.
org
/legacy/'
),
(
'server'
,
'server-login'
),
(
'username'
,
'tarek'
)]
self
.
assertEqual
(
config
,
waited
)
...
...
tests/test_upload.py
View file @
beb9809c
...
...
@@ -90,7 +90,7 @@ class uploadTestCase(PyPIRCCommandTestCase):
cmd
.
finalize_options
()
for
attr
,
waited
in
((
'username'
,
'me'
),
(
'password'
,
'secret'
),
(
'realm'
,
'pypi'
),
(
'repository'
,
'https://upload.pypi.
io
/legacy/'
)):
(
'repository'
,
'https://upload.pypi.
org
/legacy/'
)):
self
.
assertEqual
(
getattr
(
cmd
,
attr
),
waited
)
def
test_saved_password
(
self
):
...
...
@@ -131,7 +131,7 @@ class uploadTestCase(PyPIRCCommandTestCase):
content_type
=
headers
[
'Content-type'
]
self
.
assertTrue
(
content_type
.
startswith
(
'multipart/form-data'
))
self
.
assertEqual
(
self
.
last_open
.
req
.
get_method
(),
'POST'
)
expected_url
=
'https://upload.pypi.
io
/legacy/'
expected_url
=
'https://upload.pypi.
org
/legacy/'
self
.
assertEqual
(
self
.
last_open
.
req
.
get_full_url
(),
expected_url
)
self
.
assertTrue
(
b'xxx'
in
self
.
last_open
.
req
.
data
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment