Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
mtkennerly committed Nov 12, 2024
1 parent 91dfafa commit 6195463
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ def install_plugin(artifact: str) -> None:
pipx = os.environ.get("POETRY_DYNAMIC_VERSIONING_TEST_INSTALLATION") == "pipx"

if pipx:
run(f'pipx inject poetry "{artifact}[plugin]"')
run(f'pipx inject poetry "{artifact}"')
else:
run(f'poetry self add "{artifact}[plugin]"')
run(f'poetry self add "{artifact}"')


def uninstall_plugin() -> None:
Expand Down

0 comments on commit 6195463

Please sign in to comment.