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
7bb74b86
Commit
7bb74b86
authored
Sep 12, 2009
by
Ezio Melotti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#6026 - fix tests that failed without zlib
parent
0310beaa
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
0 deletions
+30
-0
tests/test_archive_util.py
tests/test_archive_util.py
+10
-0
tests/test_bdist_dumb.py
tests/test_bdist_dumb.py
+8
-0
tests/test_sdist.py
tests/test_sdist.py
+12
-0
No files found.
tests/test_archive_util.py
View file @
7bb74b86
...
...
@@ -19,10 +19,18 @@ try:
except
ImportError
:
ZIP_SUPPORT
=
find_executable
(
'zip'
)
# some tests will fail if zlib is not available
try
:
import
zlib
except
ImportError
:
zlib
=
None
class
ArchiveUtilTestCase
(
support
.
TempdirManager
,
support
.
LoggingSilencer
,
unittest
.
TestCase
):
@
unittest
.
skipUnless
(
zlib
,
"Requires zlib"
)
def
test_make_tarball
(
self
):
# creating something to tar
tmpdir
=
self
.
mkdtemp
()
...
...
@@ -83,6 +91,7 @@ class ArchiveUtilTestCase(support.TempdirManager,
base_name
=
os
.
path
.
join
(
tmpdir2
,
'archive'
)
return
tmpdir
,
tmpdir2
,
base_name
@
unittest
.
skipUnless
(
zlib
,
"Requires zlib"
)
@
unittest
.
skipUnless
(
find_executable
(
'tar'
)
and
find_executable
(
'gzip'
),
'Need the tar command to run'
)
def
test_tarfile_vs_tar
(
self
):
...
...
@@ -168,6 +177,7 @@ class ArchiveUtilTestCase(support.TempdirManager,
self
.
assertTrue
(
not
os
.
path
.
exists
(
tarball
))
self
.
assertEquals
(
len
(
w
.
warnings
),
1
)
@
unittest
.
skipUnless
(
zlib
,
"Requires zlib"
)
@
unittest
.
skipUnless
(
ZIP_SUPPORT
,
'Need zip support to run'
)
def
test_make_zipfile
(
self
):
# creating something to tar
...
...
tests/test_bdist_dumb.py
View file @
7bb74b86
...
...
@@ -4,6 +4,13 @@ import unittest
import
sys
import
os
# zlib is not used here, but if it's not available
# test_simple_built will fail
try
:
import
zlib
except
ImportError
:
zlib
=
None
from
distutils.core
import
Distribution
from
distutils.command.bdist_dumb
import
bdist_dumb
from
distutils.tests
import
support
...
...
@@ -31,6 +38,7 @@ class BuildDumbTestCase(support.TempdirManager,
sys
.
argv
=
self
.
old_sys_argv
[:]
super
(
BuildDumbTestCase
,
self
).
tearDown
()
@
unittest
.
skipUnless
(
zlib
,
"requires zlib"
)
def
test_simple_built
(
self
):
# let's create a simple package
...
...
tests/test_sdist.py
View file @
7bb74b86
...
...
@@ -3,6 +3,14 @@ import os
import
unittest
import
shutil
import
zipfile
# zlib is not used here, but if it's not available
# the tests that use zipfile may fail
try
:
import
zlib
except
ImportError
:
zlib
=
None
from
os.path
import
join
import
sys
import
tempfile
...
...
@@ -79,6 +87,7 @@ class SDistTestCase(PyPIRCCommandTestCase):
cmd
.
warn
=
_warn
return
dist
,
cmd
@
unittest
.
skipUnless
(
zlib
,
"requires zlib"
)
def
test_prune_file_list
(
self
):
# this test creates a package with some vcs dirs in it
# and launch sdist to make sure they get pruned
...
...
@@ -120,6 +129,7 @@ class SDistTestCase(PyPIRCCommandTestCase):
# making sure everything has been pruned correctly
self
.
assertEquals
(
len
(
content
),
4
)
@
unittest
.
skipUnless
(
zlib
,
"requires zlib"
)
def
test_make_distribution
(
self
):
# check if tar and gzip are installed
...
...
@@ -156,6 +166,7 @@ class SDistTestCase(PyPIRCCommandTestCase):
self
.
assertEquals
(
result
,
[
'fake-1.0.tar'
,
'fake-1.0.tar.gz'
])
@
unittest
.
skipUnless
(
zlib
,
"requires zlib"
)
def
test_add_defaults
(
self
):
# http://bugs.python.org/issue2279
...
...
@@ -217,6 +228,7 @@ class SDistTestCase(PyPIRCCommandTestCase):
manifest
=
open
(
join
(
self
.
tmp_dir
,
'MANIFEST'
)).
read
()
self
.
assertEquals
(
manifest
,
MANIFEST
%
{
'sep'
:
os
.
sep
})
@
unittest
.
skipUnless
(
zlib
,
"requires zlib"
)
def
test_metadata_check_option
(
self
):
# testing the `medata-check` option
dist
,
cmd
=
self
.
get_cmd
(
metadata
=
{})
...
...
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