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
3cdc8c99
Commit
3cdc8c99
authored
Jan 08, 2010
by
Tarek Ziadé
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added more test coverage from trunk for #7617
parent
3028d159
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
59 additions
and
0 deletions
+59
-0
tests/test_install_lib.py
tests/test_install_lib.py
+35
-0
tests/test_util.py
tests/test_util.py
+24
-0
No files found.
tests/test_install_lib.py
0 → 100644
View file @
3cdc8c99
"""Tests for distutils.command.install_data."""
import
sys
import
os
import
unittest
from
distutils.command.install_lib
import
install_lib
from
distutils.extension
import
Extension
from
distutils.tests
import
support
from
distutils.errors
import
DistutilsOptionError
class
InstallLibTestCase
(
support
.
TempdirManager
,
support
.
LoggingSilencer
,
unittest
.
TestCase
):
def
test_dont_write_bytecode
(
self
):
# makes sure byte_compile is not used
pkg_dir
,
dist
=
self
.
create_dist
()
cmd
=
install_lib
(
dist
)
cmd
.
compile
=
1
cmd
.
optimize
=
1
old_dont_write_bytecode
=
sys
.
dont_write_bytecode
sys
.
dont_write_bytecode
=
True
try
:
cmd
.
byte_compile
([])
finally
:
sys
.
dont_write_bytecode
=
old_dont_write_bytecode
self
.
assertTrue
(
'byte-compiling is disabled'
in
self
.
logs
[
0
][
1
])
def
test_suite
():
return
unittest
.
makeSuite
(
InstallLibTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
tests/test_util.py
0 → 100644
View file @
3cdc8c99
"""Tests for distutils.util."""
import
sys
import
unittest
from
distutils.errors
import
DistutilsPlatformError
,
DistutilsByteCompileError
from
distutils.util
import
byte_compile
class
UtilTestCase
(
unittest
.
TestCase
):
def
test_dont_write_bytecode
(
self
):
# makes sure byte_compile raise a DistutilsError
# if sys.dont_write_bytecode is True
old_dont_write_bytecode
=
sys
.
dont_write_bytecode
sys
.
dont_write_bytecode
=
True
try
:
self
.
assertRaises
(
DistutilsByteCompileError
,
byte_compile
,
[])
finally
:
sys
.
dont_write_bytecode
=
old_dont_write_bytecode
def
test_suite
():
return
unittest
.
makeSuite
(
UtilTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"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