Skip to content

Commit c95f5c1

Browse files
committed
chore(test): strip authentication from url
Signed-off-by: JP-Ellis <josh@jpellis.me>
1 parent 9c8663f commit c95f5c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/v3/compatibility_suite/util/provider.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ def publish(self, directory: Path | str, version: str | None = None) -> None:
315315
"publish",
316316
str(directory),
317317
"--broker-base-url",
318-
str(self.url),
318+
str(self.url.with_user(None).with_password(None)),
319319
]
320320
if self.username:
321321
cmd.extend(["--broker-username", self.username])

0 commit comments

Comments
 (0)