summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernát Gábor <bgabor8@bloomberg.net>2022-12-18 17:37:28 -0800
committerBernát Gábor <bgabor8@bloomberg.net>2022-12-18 17:37:28 -0800
commit968ea7d7c3b11e82c3f93e0af78068e8b1376e17 (patch)
treebeace09844bb5d0971fedc81039a2246acc986b0
parentb365892901f81cf7a831d5e41dca7f7f43c4c107 (diff)
downloadtox-git-968ea7d7c3b11e82c3f93e0af78068e8b1376e17.tar.gz
Remove incorrect docstring
Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net>
-rw-r--r--tests/tox_env/python/pip/test_req_file.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/tox_env/python/pip/test_req_file.py b/tests/tox_env/python/pip/test_req_file.py
index b74dc149..de826163 100644
--- a/tests/tox_env/python/pip/test_req_file.py
+++ b/tests/tox_env/python/pip/test_req_file.py
@@ -41,7 +41,6 @@ def test_deps_with_requirements_with_hash(tmp_path: Path) -> None:
def test_deps_with_no_deps(tmp_path: Path) -> None:
- """deps with --hash should raise an exception."""
(tmp_path / "r.txt").write_text("urrlib3")
python_deps = PythonDeps(raw="-rr.txt\n--no-deps", root=tmp_path)
@@ -54,7 +53,6 @@ def test_deps_with_no_deps(tmp_path: Path) -> None:
def test_req_with_no_deps(tmp_path: Path) -> None:
- """deps with --hash should raise an exception."""
(tmp_path / "r.txt").write_text("--no-deps")
python_deps = PythonDeps(raw="-rr.txt", root=tmp_path)
with pytest.raises(ValueError, match="unrecognized arguments: --no-deps"):
@@ -62,7 +60,6 @@ def test_req_with_no_deps(tmp_path: Path) -> None:
def test_opt_only_req_file(tmp_path: Path) -> None:
- """deps with --hash should raise an exception."""
(tmp_path / "r.txt").write_text("--use-feature fast-deps")
python_deps = PythonDeps(raw="-rr.txt", root=tmp_path)
assert not python_deps.requirements