Skip to content

Commit

Permalink
test: 修复 Not enough arguments (missing: "name")
Browse files Browse the repository at this point in the history
  • Loading branch information
Ljzd-PRO committed May 22, 2024
1 parent e9d40e8 commit bbdde47
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/plugin_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,8 @@ async def create_poetry_project(self) -> None:
self.path.mkdir(parents=True)
proc = await create_subprocess_shell(
"poetry init -n --name plugin-test"
'&& sed -i "s/\\^/~/g" pyproject.toml'
"&& poetry env info --ansi"
f"&& poetry add {self.whl_path}",
" && poetry env info --ansi"
f" && poetry add {self.whl_path}",
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
cwd=self.path,
Expand Down

0 comments on commit bbdde47

Please sign in to comment.