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
e5fede1f
Commit
e5fede1f
authored
Sep 20, 2018
by
Steve Dower
Committed by
GitHub
Sep 20, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-34011: Fixes missing venv files and other tests (GH-9458)
parent
b277efb9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
tests/test_bdist.py
tests/test_bdist.py
+3
-0
tests/test_bdist_wininst.py
tests/test_bdist_wininst.py
+2
-0
No files found.
tests/test_bdist.py
View file @
e5fede1f
...
...
@@ -39,6 +39,9 @@ class BuildTestCase(support.TempdirManager,
for
name
in
names
:
subcmd
=
cmd
.
get_finalized_command
(
name
)
if
getattr
(
subcmd
,
'_unsupported'
,
False
):
# command is not supported on this build
continue
self
.
assertTrue
(
subcmd
.
skip_build
,
'%s should take --skip-build from bdist'
%
name
)
...
...
tests/test_bdist_wininst.py
View file @
e5fede1f
...
...
@@ -5,6 +5,8 @@ from test.support import run_unittest
from
distutils.command.bdist_wininst
import
bdist_wininst
from
distutils.tests
import
support
@
unittest
.
skipIf
(
getattr
(
bdist_wininst
,
'_unsupported'
,
False
),
'bdist_wininst is not supported in this install'
)
class
BuildWinInstTestCase
(
support
.
TempdirManager
,
support
.
LoggingSilencer
,
unittest
.
TestCase
):
...
...
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