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
74c36387
Commit
74c36387
authored
Nov 06, 2010
by
Éric Araujo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make sure each test can be run standalone (./python Lib/distutils/tests/x.py)
parent
522ffa25
Changes
41
Show whitespace changes
Inline
Side-by-side
Showing
41 changed files
with
86 additions
and
56 deletions
+86
-56
tests/__init__.py
tests/__init__.py
+3
-2
tests/test_archive_util.py
tests/test_archive_util.py
+2
-2
tests/test_bdist.py
tests/test_bdist.py
+2
-1
tests/test_bdist_dumb.py
tests/test_bdist_dumb.py
+2
-1
tests/test_bdist_msi.py
tests/test_bdist_msi.py
+1
-1
tests/test_bdist_rpm.py
tests/test_bdist_rpm.py
+2
-1
tests/test_bdist_wininst.py
tests/test_bdist_wininst.py
+2
-1
tests/test_build.py
tests/test_build.py
+2
-1
tests/test_build_clib.py
tests/test_build_clib.py
+3
-1
tests/test_build_ext.py
tests/test_build_ext.py
+1
-0
tests/test_build_py.py
tests/test_build_py.py
+2
-1
tests/test_build_scripts.py
tests/test_build_scripts.py
+2
-1
tests/test_check.py
tests/test_check.py
+2
-1
tests/test_clean.py
tests/test_clean.py
+2
-1
tests/test_cmd.py
tests/test_cmd.py
+3
-3
tests/test_config.py
tests/test_config.py
+2
-1
tests/test_config_cmd.py
tests/test_config_cmd.py
+2
-1
tests/test_core.py
tests/test_core.py
+2
-2
tests/test_cygwinccompiler.py
tests/test_cygwinccompiler.py
+2
-1
tests/test_dep_util.py
tests/test_dep_util.py
+2
-1
tests/test_dir_util.py
tests/test_dir_util.py
+2
-1
tests/test_dist.py
tests/test_dist.py
+2
-2
tests/test_extension.py
tests/test_extension.py
+2
-2
tests/test_file_util.py
tests/test_file_util.py
+2
-1
tests/test_filelist.py
tests/test_filelist.py
+2
-2
tests/test_install.py
tests/test_install.py
+2
-2
tests/test_install_data.py
tests/test_install_data.py
+2
-1
tests/test_install_headers.py
tests/test_install_headers.py
+2
-1
tests/test_install_lib.py
tests/test_install_lib.py
+2
-1
tests/test_install_scripts.py
tests/test_install_scripts.py
+2
-1
tests/test_log.py
tests/test_log.py
+2
-1
tests/test_msvc9compiler.py
tests/test_msvc9compiler.py
+2
-1
tests/test_register.py
tests/test_register.py
+2
-2
tests/test_sdist.py
tests/test_sdist.py
+3
-5
tests/test_spawn.py
tests/test_spawn.py
+2
-2
tests/test_text_file.py
tests/test_text_file.py
+2
-1
tests/test_unixccompiler.py
tests/test_unixccompiler.py
+2
-1
tests/test_upload.py
tests/test_upload.py
+2
-3
tests/test_util.py
tests/test_util.py
+2
-1
tests/test_version.py
tests/test_version.py
+2
-1
tests/test_versionpredicate.py
tests/test_versionpredicate.py
+4
-0
No files found.
tests/__init__.py
View file @
74c36387
...
...
@@ -15,9 +15,10 @@ by import rather than matching pre-defined names.
import
os
import
sys
import
unittest
from
test.support
import
run_unittest
here
=
os
.
path
.
dirname
(
__file__
)
here
=
os
.
path
.
dirname
(
__file__
)
or
os
.
curdir
def
test_suite
():
...
...
@@ -32,4 +33,4 @@ def test_suite():
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_archive_util.py
View file @
74c36387
...
...
@@ -12,7 +12,7 @@ from distutils.archive_util import (check_archive_formats, make_tarball,
ARCHIVE_FORMATS
)
from
distutils.spawn
import
find_executable
,
spawn
from
distutils.tests
import
support
from
test.support
import
check_warnings
from
test.support
import
check_warnings
,
run_unittest
try
:
import
zipfile
...
...
@@ -211,4 +211,4 @@ def test_suite():
return
unittest
.
makeSuite
(
ArchiveUtilTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_bdist.py
View file @
74c36387
...
...
@@ -4,6 +4,7 @@ import sys
import
os
import
tempfile
import
shutil
from
test.support
import
run_unittest
from
distutils.core
import
Distribution
from
distutils.command.bdist
import
bdist
...
...
@@ -40,4 +41,4 @@ def test_suite():
return
unittest
.
makeSuite
(
BuildTestCase
)
if
__name__
==
'__main__'
:
test_support
.
run_unittest
(
test_suite
())
run_unittest
(
test_suite
())
tests/test_bdist_dumb.py
View file @
74c36387
...
...
@@ -3,6 +3,7 @@
import
unittest
import
sys
import
os
from
test.support
import
run_unittest
from
distutils.core
import
Distribution
from
distutils.command.bdist_dumb
import
bdist_dumb
...
...
@@ -77,4 +78,4 @@ def test_suite():
return
unittest
.
makeSuite
(
BuildDumbTestCase
)
if
__name__
==
'__main__'
:
test_support
.
run_unittest
(
test_suite
())
run_unittest
(
test_suite
())
tests/test_bdist_msi.py
View file @
74c36387
...
...
@@ -11,7 +11,7 @@ class BDistMSITestCase(support.TempdirManager,
support
.
LoggingSilencer
,
unittest
.
TestCase
):
def
test_minial
(
self
):
def
test_mini
m
al
(
self
):
# minimal test XXX need more tests
from
distutils.command.bdist_msi
import
bdist_msi
pkg_pth
,
dist
=
self
.
create_dist
()
...
...
tests/test_bdist_rpm.py
View file @
74c36387
...
...
@@ -5,6 +5,7 @@ import sys
import
os
import
tempfile
import
shutil
from
test.support
import
run_unittest
from
distutils.core
import
Distribution
from
distutils.command.bdist_rpm
import
bdist_rpm
...
...
@@ -122,4 +123,4 @@ def test_suite():
return
unittest
.
makeSuite
(
BuildRpmTestCase
)
if
__name__
==
'__main__'
:
test_support
.
run_unittest
(
test_suite
())
run_unittest
(
test_suite
())
tests/test_bdist_wininst.py
View file @
74c36387
"""Tests for distutils.command.bdist_wininst."""
import
unittest
from
test.support
import
run_unittest
from
distutils.command.bdist_wininst
import
bdist_wininst
from
distutils.tests
import
support
...
...
@@ -27,4 +28,4 @@ def test_suite():
return
unittest
.
makeSuite
(
BuildWinInstTestCase
)
if
__name__
==
'__main__'
:
test_support
.
run_unittest
(
test_suite
())
run_unittest
(
test_suite
())
tests/test_build.py
View file @
74c36387
...
...
@@ -2,6 +2,7 @@
import
unittest
import
os
import
sys
from
test.support
import
run_unittest
from
distutils.command.build
import
build
from
distutils.tests
import
support
...
...
@@ -51,4 +52,4 @@ def test_suite():
return
unittest
.
makeSuite
(
BuildTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_build_clib.py
View file @
74c36387
...
...
@@ -3,6 +3,8 @@ import unittest
import
os
import
sys
from
test.support
import
run_unittest
from
distutils.command.build_clib
import
build_clib
from
distutils.errors
import
DistutilsSetupError
from
distutils.tests
import
support
...
...
@@ -141,4 +143,4 @@ def test_suite():
return
unittest
.
makeSuite
(
BuildCLibTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_build_ext.py
View file @
74c36387
...
...
@@ -14,6 +14,7 @@ from distutils.errors import (
import
unittest
from
test
import
support
from
test.support
import
run_unittest
# http://bugs.python.org/issue4373
# Don't load the xx module more than once.
...
...
tests/test_build_py.py
View file @
74c36387
...
...
@@ -10,6 +10,7 @@ from distutils.core import Distribution
from
distutils.errors
import
DistutilsFileError
from
distutils.tests
import
support
from
test.support
import
run_unittest
class
BuildPyTestCase
(
support
.
TempdirManager
,
...
...
@@ -114,4 +115,4 @@ def test_suite():
return
unittest
.
makeSuite
(
BuildPyTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_build_scripts.py
View file @
74c36387
...
...
@@ -8,6 +8,7 @@ from distutils.core import Distribution
from
distutils
import
sysconfig
from
distutils.tests
import
support
from
test.support
import
run_unittest
class
BuildScriptsTestCase
(
support
.
TempdirManager
,
...
...
@@ -108,4 +109,4 @@ def test_suite():
return
unittest
.
makeSuite
(
BuildScriptsTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_check.py
View file @
74c36387
"""Tests for distutils.command.check."""
import
unittest
from
test.support
import
run_unittest
from
distutils.command.check
import
check
,
HAS_DOCUTILS
from
distutils.tests
import
support
...
...
@@ -95,4 +96,4 @@ def test_suite():
return
unittest
.
makeSuite
(
CheckTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_clean.py
View file @
74c36387
...
...
@@ -6,6 +6,7 @@ import getpass
from
distutils.command.clean
import
clean
from
distutils.tests
import
support
from
test.support
import
run_unittest
class
cleanTestCase
(
support
.
TempdirManager
,
support
.
LoggingSilencer
,
...
...
@@ -47,4 +48,4 @@ def test_suite():
return
unittest
.
makeSuite
(
cleanTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_cmd.py
View file @
74c36387
"""Tests for distutils.cmd."""
import
unittest
import
os
from
test.support
import
captured_stdout
from
test.support
import
captured_stdout
,
run_unittest
from
distutils.cmd
import
Command
from
distutils.dist
import
Distribution
...
...
@@ -99,7 +99,7 @@ class CommandTestCase(unittest.TestCase):
def
test_ensure_dirname
(
self
):
cmd
=
self
.
cmd
cmd
.
option1
=
os
.
path
.
dirname
(
__file__
)
cmd
.
option1
=
os
.
path
.
dirname
(
__file__
)
or
os
.
curdir
cmd
.
ensure_dirname
(
'option1'
)
cmd
.
option2
=
'xxx'
self
.
assertRaises
(
DistutilsOptionError
,
cmd
.
ensure_dirname
,
'option2'
)
...
...
@@ -124,4 +124,4 @@ def test_suite():
return
unittest
.
makeSuite
(
CommandTestCase
)
if
__name__
==
'__main__'
:
test_support
.
run_unittest
(
test_suite
())
run_unittest
(
test_suite
())
tests/test_config.py
View file @
74c36387
...
...
@@ -10,6 +10,7 @@ from distutils.log import set_threshold
from
distutils.log
import
WARN
from
distutils.tests
import
support
from
test.support
import
run_unittest
PYPIRC
=
"""
\
[distutils]
...
...
@@ -116,4 +117,4 @@ def test_suite():
return
unittest
.
makeSuite
(
PyPIRCCommandTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_config_cmd.py
View file @
74c36387
...
...
@@ -2,6 +2,7 @@
import
unittest
import
os
import
sys
from
test.support
import
run_unittest
from
distutils.command.config
import
dump_file
,
config
from
distutils.tests
import
support
...
...
@@ -86,4 +87,4 @@ def test_suite():
return
unittest
.
makeSuite
(
ConfigTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_core.py
View file @
74c36387
...
...
@@ -6,7 +6,7 @@ import os
import
shutil
import
sys
import
test.support
from
test.support
import
captured_stdout
from
test.support
import
captured_stdout
,
run_unittest
import
unittest
from
distutils.tests
import
support
...
...
@@ -105,4 +105,4 @@ def test_suite():
return
unittest
.
makeSuite
(
CoreTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_cygwinccompiler.py
View file @
74c36387
...
...
@@ -4,6 +4,7 @@ import sys
import
os
from
io
import
BytesIO
import
subprocess
from
test.support
import
run_unittest
from
distutils
import
cygwinccompiler
from
distutils.cygwinccompiler
import
(
CygwinCCompiler
,
check_config_h
,
...
...
@@ -151,4 +152,4 @@ def test_suite():
return
unittest
.
makeSuite
(
CygwinCCompilerTestCase
)
if
__name__
==
'__main__'
:
test_support
.
run_unittest
(
test_suite
())
run_unittest
(
test_suite
())
tests/test_dep_util.py
View file @
74c36387
...
...
@@ -6,6 +6,7 @@ import time
from
distutils.dep_util
import
newer
,
newer_pairwise
,
newer_group
from
distutils.errors
import
DistutilsFileError
from
distutils.tests
import
support
from
test.support
import
run_unittest
class
DepUtilTestCase
(
support
.
TempdirManager
,
unittest
.
TestCase
):
...
...
@@ -77,4 +78,4 @@ def test_suite():
return
unittest
.
makeSuite
(
DepUtilTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_dir_util.py
View file @
74c36387
...
...
@@ -10,6 +10,7 @@ from distutils.dir_util import (mkpath, remove_tree, create_tree, copy_tree,
from
distutils
import
log
from
distutils.tests
import
support
from
test.support
import
run_unittest
class
DirUtilTestCase
(
support
.
TempdirManager
,
unittest
.
TestCase
):
...
...
@@ -112,4 +113,4 @@ def test_suite():
return
unittest
.
makeSuite
(
DirUtilTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_dist.py
View file @
74c36387
...
...
@@ -9,7 +9,7 @@ import textwrap
from
distutils.dist
import
Distribution
,
fix_help_options
from
distutils.cmd
import
Command
from
test.support
import
TESTFN
,
captured_stdout
from
test.support
import
TESTFN
,
captured_stdout
,
run_unittest
from
distutils.tests
import
support
...
...
@@ -325,4 +325,4 @@ def test_suite():
return
suite
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_extension.py
View file @
74c36387
...
...
@@ -3,7 +3,7 @@ import unittest
import
os
import
warnings
from
test.support
import
check_warnings
from
test.support
import
check_warnings
,
run_unittest
from
distutils.extension
import
read_setup_file
,
Extension
class
ExtensionTestCase
(
unittest
.
TestCase
):
...
...
@@ -66,4 +66,4 @@ def test_suite():
return
unittest
.
makeSuite
(
ExtensionTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_file_util.py
View file @
74c36387
...
...
@@ -6,6 +6,7 @@ import shutil
from
distutils.file_util
import
move_file
from
distutils
import
log
from
distutils.tests
import
support
from
test.support
import
run_unittest
class
FileUtilTestCase
(
support
.
TempdirManager
,
unittest
.
TestCase
):
...
...
@@ -62,4 +63,4 @@ def test_suite():
return
unittest
.
makeSuite
(
FileUtilTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_filelist.py
View file @
74c36387
...
...
@@ -2,7 +2,7 @@
import
unittest
from
distutils.filelist
import
glob_to_re
,
FileList
from
test.support
import
captured_stdout
from
test.support
import
captured_stdout
,
run_unittest
from
distutils
import
debug
class
FileListTestCase
(
unittest
.
TestCase
):
...
...
@@ -39,4 +39,4 @@ def test_suite():
return unittest.makeSuite(FileListTestCase)
if __name__ == "__main__":
unittest.main(defaultTest="test_suite"
)
run_unittest(test_suite()
)
tests/test_install.py
View file @
74c36387
...
...
@@ -6,7 +6,7 @@ import sys
import
unittest
import
site
from
test.support
import
captured_stdout
from
test.support
import
captured_stdout
,
run_unittest
from
distutils.command.install
import
install
from
distutils.command
import
install
as
install_module
...
...
@@ -203,4 +203,4 @@ def test_suite():
return
unittest
.
makeSuite
(
InstallTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_install_data.py
View file @
74c36387
...
...
@@ -6,6 +6,7 @@ import getpass
from
distutils.command.install_data
import
install_data
from
distutils.tests
import
support
from
test.support
import
run_unittest
class
InstallDataTestCase
(
support
.
TempdirManager
,
support
.
LoggingSilencer
,
...
...
@@ -73,4 +74,4 @@ def test_suite():
return
unittest
.
makeSuite
(
InstallDataTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_install_headers.py
View file @
74c36387
...
...
@@ -6,6 +6,7 @@ import getpass
from
distutils.command.install_headers
import
install_headers
from
distutils.tests
import
support
from
test.support
import
run_unittest
class
InstallHeadersTestCase
(
support
.
TempdirManager
,
support
.
LoggingSilencer
,
...
...
@@ -37,4 +38,4 @@ def test_suite():
return
unittest
.
makeSuite
(
InstallHeadersTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_install_lib.py
View file @
74c36387
...
...
@@ -7,6 +7,7 @@ from distutils.command.install_lib import install_lib
from
distutils.extension
import
Extension
from
distutils.tests
import
support
from
distutils.errors
import
DistutilsOptionError
from
test.support
import
run_unittest
class
InstallLibTestCase
(
support
.
TempdirManager
,
support
.
LoggingSilencer
,
...
...
@@ -98,4 +99,4 @@ def test_suite():
return
unittest
.
makeSuite
(
InstallLibTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_install_scripts.py
View file @
74c36387
...
...
@@ -7,6 +7,7 @@ from distutils.command.install_scripts import install_scripts
from
distutils.core
import
Distribution
from
distutils.tests
import
support
from
test.support
import
run_unittest
class
InstallScriptsTestCase
(
support
.
TempdirManager
,
...
...
@@ -78,4 +79,4 @@ def test_suite():
return
unittest
.
makeSuite
(
InstallScriptsTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_log.py
View file @
74c36387
...
...
@@ -3,6 +3,7 @@
import
sys
import
unittest
from
tempfile
import
NamedTemporaryFile
from
test.support
import
run_unittest
from
distutils
import
log
...
...
@@ -33,4 +34,4 @@ def test_suite():
return
unittest
.
makeSuite
(
TestLog
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_msvc9compiler.py
View file @
74c36387
...
...
@@ -5,6 +5,7 @@ import os
from
distutils.errors
import
DistutilsPlatformError
from
distutils.tests
import
support
from
test.support
import
run_unittest
_MANIFEST
=
"""
\
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
...
...
@@ -137,4 +138,4 @@ def test_suite():
return
unittest
.
makeSuite
(
msvc9compilerTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_register.py
View file @
74c36387
...
...
@@ -6,7 +6,7 @@ import getpass
import
urllib
import
warnings
from
test.support
import
check_warnings
from
test.support
import
check_warnings
,
run_unittest
from
distutils.command
import
register
as
register_module
from
distutils.command.register
import
register
...
...
@@ -259,4 +259,4 @@ def test_suite():
return
unittest
.
makeSuite
(
RegisterTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_sdist.py
View file @
74c36387
...
...
@@ -8,11 +8,9 @@ import sys
import
tempfile
import
warnings
from
test.support
import
check_warnings
from
test.support
import
captured_stdout
from
test.support
import
captured_stdout
,
check_warnings
,
run_unittest
from
distutils.command.sdist
import
sdist
from
distutils.command.sdist
import
show_formats
from
distutils.command.sdist
import
sdist
,
show_formats
from
distutils.core
import
Distribution
from
distutils.tests.test_config
import
PyPIRCCommandTestCase
from
distutils.errors
import
DistutilsExecError
,
DistutilsOptionError
...
...
@@ -358,4 +356,4 @@ def test_suite():
return
unittest
.
makeSuite
(
SDistTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_spawn.py
View file @
74c36387
...
...
@@ -2,7 +2,7 @@
import
unittest
import
os
import
time
from
test.support
import
captured_stdout
from
test.support
import
captured_stdout
,
run_unittest
from
distutils.spawn
import
_nt_quote_args
from
distutils.spawn
import
spawn
,
find_executable
...
...
@@ -55,4 +55,4 @@ def test_suite():
return
unittest
.
makeSuite
(
SpawnTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_text_file.py
View file @
74c36387
...
...
@@ -3,6 +3,7 @@ import os
import
unittest
from
distutils.text_file
import
TextFile
from
distutils.tests
import
support
from
test.support
import
run_unittest
TEST_DATA
=
"""# test file
...
...
@@ -103,4 +104,4 @@ def test_suite():
return
unittest
.
makeSuite
(
TextFileTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_unixccompiler.py
View file @
74c36387
"""Tests for distutils.unixccompiler."""
import
sys
import
unittest
from
test.support
import
run_unittest
from
distutils
import
sysconfig
from
distutils.unixccompiler
import
UnixCCompiler
...
...
@@ -118,4 +119,4 @@ def test_suite():
return
unittest
.
makeSuite
(
UnixCCompilerTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_upload.py
View file @
74c36387
"""Tests for distutils.command.upload."""
import
sys
import
os
import
unittest
import
http.client
as
httpclient
from
test.support
import
run_unittest
from
distutils.command.upload
import
upload
from
distutils.core
import
Distribution
from
distutils.tests
import
support
from
distutils.tests.test_config
import
PYPIRC
,
PyPIRCCommandTestCase
PYPIRC_LONG_PASSWORD
=
"""
\
...
...
@@ -136,4 +135,4 @@ def test_suite():
return
unittest
.
makeSuite
(
uploadTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_util.py
View file @
74c36387
...
...
@@ -3,6 +3,7 @@ import os
import
sys
import
unittest
from
copy
import
copy
from
test.support
import
run_unittest
from
distutils.errors
import
DistutilsPlatformError
,
DistutilsByteCompileError
from
distutils.util
import
(
get_platform
,
convert_path
,
change_root
,
...
...
@@ -274,4 +275,4 @@ def test_suite():
return
unittest
.
makeSuite
(
UtilTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_version.py
View file @
74c36387
...
...
@@ -2,6 +2,7 @@
import
unittest
from
distutils.version
import
LooseVersion
from
distutils.version
import
StrictVersion
from
test.support
import
run_unittest
class
VersionTestCase
(
unittest
.
TestCase
):
...
...
@@ -67,4 +68,4 @@ def test_suite():
return
unittest
.
makeSuite
(
VersionTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
run_unittest
(
test_suite
()
)
tests/test_versionpredicate.py
View file @
74c36387
...
...
@@ -4,6 +4,10 @@
import
distutils.versionpredicate
import
doctest
from
test.support
import
run_unittest
def
test_suite
():
return
doctest
.
DocTestSuite
(
distutils
.
versionpredicate
)
if
__name__
==
'__main__'
:
run_unittest
(
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