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
0685847e
Commit
0685847e
authored
Aug 31, 2016
by
R David Murray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#27904: fix distutils tests.
Patch by Ville Skyttä.
parent
3ac58425
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
tests/test_build_py.py
tests/test_build_py.py
+2
-1
tests/test_install_lib.py
tests/test_install_lib.py
+2
-1
No files found.
tests/test_build_py.py
View file @
0685847e
...
...
@@ -168,7 +168,8 @@ class BuildPyTestCase(support.TempdirManager,
finally
:
sys
.
dont_write_bytecode
=
old_dont_write_bytecode
self
.
assertIn
(
'byte-compiling is disabled'
,
self
.
logs
[
0
][
1
])
self
.
assertIn
(
'byte-compiling is disabled'
,
self
.
logs
[
0
][
1
]
%
self
.
logs
[
0
][
2
])
def
test_suite
():
...
...
tests/test_install_lib.py
View file @
0685847e
...
...
@@ -104,7 +104,8 @@ class InstallLibTestCase(support.TempdirManager,
finally
:
sys
.
dont_write_bytecode
=
old_dont_write_bytecode
self
.
assertIn
(
'byte-compiling is disabled'
,
self
.
logs
[
0
][
1
])
self
.
assertIn
(
'byte-compiling is disabled'
,
self
.
logs
[
0
][
1
]
%
self
.
logs
[
0
][
2
])
def
test_suite
():
...
...
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