Skip to content

Commit

Permalink
chore(test): strip authentication from url
Browse files Browse the repository at this point in the history
Signed-off-by: JP-Ellis <[email protected]>
  • Loading branch information
JP-Ellis committed Mar 21, 2024
1 parent 20d96a0 commit 63b30f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/v3/compatibility_suite/util/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ def publish(self, directory: Path | str, version: str | None = None) -> None:
"publish",
str(directory),
"--broker-base-url",
str(self.url),
str(self.url.with_user(None).with_password(None)),
]
if self.username:
cmd.extend(["--broker-username", self.username])
Expand Down

0 comments on commit 63b30f9

Please sign in to comment.