提交 19db5974 编写于 作者: T Tzu-ping Chung

Use a temp requirements file to avoid shell syntax

上级 4d17d932
......@@ -194,16 +194,14 @@ def test_new_resolver_ignore_dependencies(script):
[
"base[add]",
"base[add] >= 0.1.0",
pytest.param( # Non-standard syntax. To deprecate, see pypa/pip#8288.
"base >= 0.1.0[add]",
marks=pytest.mark.skipif(
"sys.platform == 'win32'",
reason="script.pip() does not handle >= on Windows",
),
),
# Non-standard syntax. To deprecate, see pypa/pip#8288.
"base >= 0.1.0[add]",
],
)
def test_new_resolver_installs_extras(script, root_dep):
def test_new_resolver_installs_extras(tmpdir, script, root_dep):
req_file = tmpdir.joinpath("requirements.txt")
req_file.write_text(root_dep)
create_basic_wheel_for_package(
script,
"base",
......@@ -219,7 +217,7 @@ def test_new_resolver_installs_extras(script, root_dep):
"install", "--unstable-feature=resolver",
"--no-cache-dir", "--no-index",
"--find-links", script.scratch_path,
root_dep,
"-r", req_file,
)
assert_installed(script, base="0.1.0", dep="0.1.0")
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册