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
96ab108a
Commit
96ab108a
authored
Jul 30, 2017
by
Jason R. Coombs
Committed by
GitHub
Jul 30, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1106 from benoit-pierre/fix_test_command_handling_of_extras_require
Fix `test` command handling of `extras_require`
parents
de05e931
75e88f63
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
73 additions
and
15 deletions
+73
-15
setuptools/command/test.py
setuptools/command/test.py
+7
-3
setuptools/tests/test_easy_install.py
setuptools/tests/test_easy_install.py
+0
-12
setuptools/tests/test_virtualenv.py
setuptools/tests/test_virtualenv.py
+66
-0
No files found.
setuptools/command/test.py
View file @
96ab108a
...
...
@@ -11,7 +11,7 @@ from setuptools.extern import six
from
setuptools.extern.six.moves
import
map
,
filter
from
pkg_resources
import
(
resource_listdir
,
resource_exists
,
normalize_path
,
working_set
,
_namespace_packages
,
working_set
,
_namespace_packages
,
evaluate_marker
,
add_activation_listener
,
require
,
EntryPoint
)
from
setuptools
import
Command
from
setuptools.py31compat
import
unittest_main
...
...
@@ -191,9 +191,13 @@ class test(Command):
Install the requirements indicated by self.distribution and
return an iterable of the dists that were built.
"""
ir_d
=
dist
.
fetch_build_eggs
(
dist
.
install_requires
or
[]
)
ir_d
=
dist
.
fetch_build_eggs
(
dist
.
install_requires
)
tr_d
=
dist
.
fetch_build_eggs
(
dist
.
tests_require
or
[])
return
itertools
.
chain
(
ir_d
,
tr_d
)
er_d
=
dist
.
fetch_build_eggs
(
v
for
k
,
v
in
dist
.
extras_require
.
items
()
if
k
.
startswith
(
':'
)
and
evaluate_marker
(
k
[
1
:])
)
return
itertools
.
chain
(
ir_d
,
tr_d
,
er_d
)
def
run
(
self
):
installed_dists
=
self
.
install_dists
(
self
.
distribution
)
...
...
setuptools/tests/test_easy_install.py
View file @
96ab108a
...
...
@@ -567,18 +567,6 @@ def create_setup_requires_package(path, distname='foobar', version='0.1',
return
test_pkg
def
make_trivial_sdist
(
dist_path
,
setup_py
):
"""Create a simple sdist tarball at dist_path, containing just a
setup.py, the contents of which are provided by the setup_py string.
"""
setup_py_file
=
tarfile
.
TarInfo
(
name
=
'setup.py'
)
setup_py_bytes
=
io
.
BytesIO
(
setup_py
.
encode
(
'utf-8'
))
setup_py_file
.
size
=
len
(
setup_py_bytes
.
getvalue
())
with
tarfile_open
(
dist_path
,
'w:gz'
)
as
dist
:
dist
.
addfile
(
setup_py_file
,
fileobj
=
setup_py_bytes
)
@
pytest
.
mark
.
skipif
(
sys
.
platform
.
startswith
(
'java'
)
and
ei
.
is_sh
(
sys
.
executable
),
reason
=
"Test cannot run under java when executable is sh"
...
...
setuptools/tests/test_virtualenv.py
View file @
96ab108a
...
...
@@ -6,6 +6,9 @@ from pytest_fixture_config import yield_requires_config
import
pytest_virtualenv
from
.textwrap
import
DALS
from
.test_easy_install
import
make_nspkg_sdist
@
yield_requires_config
(
pytest_virtualenv
.
CONFIG
,
[
'virtualenv_executable'
])
@
yield_fixture
(
scope
=
'function'
)
...
...
@@ -48,3 +51,66 @@ def test_pip_upgrade_from_source(virtualenv):
virtualenv
.
run
(
'pip install '
+
wheel
)
# And finally try to upgrade from source.
virtualenv
.
run
(
'pip install --no-cache-dir --upgrade '
+
sdist
)
def
test_test_command_install_requirements
(
bare_virtualenv
,
tmpdir
):
"""
Check the test command will install all required dependencies.
"""
bare_virtualenv
.
run
(
' && '
.
join
((
'cd {source}'
,
'python setup.py develop'
,
)).
format
(
source
=
SOURCE_DIR
))
def
sdist
(
distname
,
version
):
dist_path
=
tmpdir
.
join
(
'%s-%s.tar.gz'
%
(
distname
,
version
))
make_nspkg_sdist
(
str
(
dist_path
),
distname
,
version
)
return
dist_path
dependency_links
=
[
str
(
dist_path
)
for
dist_path
in
(
sdist
(
'foobar'
,
'2.4'
),
sdist
(
'bits'
,
'4.2'
),
sdist
(
'bobs'
,
'6.0'
),
sdist
(
'pieces'
,
'0.6'
),
)
]
with
tmpdir
.
join
(
'setup.py'
).
open
(
'w'
)
as
fp
:
fp
.
write
(
DALS
(
'''
from setuptools import setup
setup(
dependency_links={dependency_links!r},
install_requires=[
'barbazquux1; sys_platform in ""',
'foobar==2.4',
],
setup_requires='bits==4.2',
tests_require="""
bobs==6.0
""",
extras_require={{
'test': ['barbazquux2'],
':"" in sys_platform': 'pieces==0.6',
':python_version > "1"': """
pieces
foobar
""",
}}
)
'''
.
format
(
dependency_links
=
dependency_links
)))
with
tmpdir
.
join
(
'test.py'
).
open
(
'w'
)
as
fp
:
fp
.
write
(
DALS
(
'''
import foobar
import bits
import bobs
import pieces
open('success', 'w').close()
'''
))
# Run test command for test package.
bare_virtualenv
.
run
(
' && '
.
join
((
'cd {tmpdir}'
,
'python setup.py test -s test'
,
)).
format
(
tmpdir
=
tmpdir
))
assert
tmpdir
.
join
(
'success'
).
check
()
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