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
2f0e172b
Commit
2f0e172b
authored
Dec 14, 2015
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add test capturing InterpolationSyntaxError on Python 3 and KeyError on Python 2
parent
5eafe764
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
setuptools/tests/test_packageindex.py
setuptools/tests/test_packageindex.py
+21
-0
No files found.
setuptools/tests/test_packageindex.py
View file @
2f0e172b
from
__future__
import
absolute_import
import
sys
import
sys
import
os
import
distutils.errors
import
distutils.errors
from
setuptools.compat
import
httplib
,
HTTPError
,
unicode
,
pathname2url
from
setuptools.compat
import
httplib
,
HTTPError
,
unicode
,
pathname2url
from
.textwrap
import
DALS
import
pkg_resources
import
pkg_resources
import
setuptools.package_index
import
setuptools.package_index
...
@@ -201,3 +205,20 @@ class TestContentCheckers:
...
@@ -201,3 +205,20 @@ class TestContentCheckers:
'http://foo/bar#md5=f12895fdffbd45007040d2e44df98478'
)
'http://foo/bar#md5=f12895fdffbd45007040d2e44df98478'
)
rep
=
checker
.
report
(
lambda
x
:
x
,
'My message about %s'
)
rep
=
checker
.
report
(
lambda
x
:
x
,
'My message about %s'
)
assert
rep
==
'My message about md5'
assert
rep
==
'My message about md5'
class
TestPyPIConfig
:
def
test_percent_in_password
(
self
,
tmpdir
,
monkeypatch
):
monkeypatch
.
setitem
(
os
.
environ
,
'HOME'
,
str
(
tmpdir
))
pypirc
=
tmpdir
/
'.pypirc'
with
pypirc
.
open
(
'w'
)
as
strm
:
strm
.
write
(
DALS
(
"""
[pypi]
repository=https://pypi.python.org
username=jaraco
password=pity%
"""
))
cfg
=
setuptools
.
package_index
.
PyPIConfig
()
cred
=
cfg
.
creds_by_repository
[
'pypi'
]
assert
cred
.
username
==
'jaraco'
assert
cred
.
password
==
'pity%'
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