Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
9d4c5f46
Commit
9d4c5f46
authored
Feb 22, 2014
by
Eric Snow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #20484: Disable the 2 remaining "modules" tests in test_pydoc.
I'll look into re-enabling them in issue #20128.
parent
b79b785a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
Lib/test/test_pydoc.py
Lib/test/test_pydoc.py
+3
-1
No files found.
Lib/test/test_pydoc.py
View file @
9d4c5f46
...
...
@@ -608,6 +608,7 @@ class PydocImportTest(PydocBaseTest):
self
.
assertEqual
(
out
.
getvalue
(),
''
)
self
.
assertEqual
(
err
.
getvalue
(),
''
)
@
unittest
.
skip
(
'causes undesireable side-effects (#20128)'
)
def
test_modules
(
self
):
# See Helper.listmodules().
num_header_lines
=
2
...
...
@@ -623,6 +624,7 @@ class PydocImportTest(PydocBaseTest):
self
.
assertGreaterEqual
(
num_lines
,
expected
)
@
unittest
.
skip
(
'causes undesireable side-effects (#20128)'
)
def
test_modules_search
(
self
):
# See Helper.listmodules().
expected
=
'pydoc - '
...
...
@@ -635,7 +637,7 @@ class PydocImportTest(PydocBaseTest):
self
.
assertIn
(
expected
,
result
)
@
unittest
.
skip
(
'some buildbots are not cooperating (#2012
3
)'
)
@
unittest
.
skip
(
'some buildbots are not cooperating (#2012
8
)'
)
def
test_modules_search_builtin
(
self
):
expected
=
'gc - '
...
...
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