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
1a7f413d
Commit
1a7f413d
authored
May 14, 2009
by
Tarek Ziadé
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more test coverage for distutils sdist command
parent
6378315e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
4 deletions
+17
-4
command/sdist.py
command/sdist.py
+3
-4
tests/test_sdist.py
tests/test_sdist.py
+14
-0
No files found.
command/sdist.py
View file @
1a7f413d
...
...
@@ -16,19 +16,18 @@ from distutils.filelist import FileList
from
distutils
import
log
from
distutils.util
import
convert_path
def
show_formats
():
def
show_formats
():
"""Print all possible values for the 'formats' option (used by
the "--help-formats" command-line option).
"""
from
distutils.fancy_getopt
import
FancyGetopt
from
distutils.archive_util
import
ARCHIVE_FORMATS
formats
=
[]
formats
=
[]
for
format
in
ARCHIVE_FORMATS
.
keys
():
formats
.
append
((
"formats="
+
format
,
None
,
ARCHIVE_FORMATS
[
format
][
2
]))
formats
.
sort
()
pretty_printer
=
FancyGetopt
(
formats
)
pretty_printer
.
print_help
(
FancyGetopt
(
formats
).
print_help
(
"List of available source distribution formats:"
)
class
sdist
(
Command
):
...
...
tests/test_sdist.py
View file @
1a7f413d
...
...
@@ -7,12 +7,16 @@ from os.path import join
import
sys
import
tempfile
from
test.test_support
import
captured_stdout
from
distutils.command.sdist
import
sdist
from
distutils.command.sdist
import
show_formats
from
distutils.core
import
Distribution
from
distutils.tests.test_config
import
PyPIRCCommandTestCase
from
distutils.errors
import
DistutilsExecError
from
distutils.spawn
import
find_executable
from
distutils.tests
import
support
from
distutils.archive_util
import
ARCHIVE_FORMATS
SETUP_PY
=
"""
from distutils.core import setup
...
...
@@ -210,6 +214,16 @@ class sdistTestCase(PyPIRCCommandTestCase):
manifest
=
open
(
join
(
self
.
tmp_dir
,
'MANIFEST'
)).
read
()
self
.
assertEquals
(
manifest
,
MANIFEST
%
{
'sep'
:
os
.
sep
})
def
test_show_formats
(
self
):
with
captured_stdout
()
as
stdout
:
show_formats
()
# the output should be a header line + one line per format
num_formats
=
len
(
ARCHIVE_FORMATS
.
keys
())
output
=
[
line
for
line
in
stdout
.
getvalue
().
split
(
'
\
n
'
)
if
line
.
strip
().
startswith
(
'--formats='
)]
self
.
assertEquals
(
len
(
output
),
num_formats
)
def
test_suite
():
return
unittest
.
makeSuite
(
sdistTestCase
)
...
...
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