Skip to content

Commit 9d0471f

Browse files
committed
.
1 parent 94b248f commit 9d0471f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/confcom/azext_confcom/tests/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ def run_on_wheel(request):
5858
if (extension_dir / "build").exists():
5959
shutil.rmtree((extension_dir / "build").as_posix(), ignore_errors=True)
6060

61-
if not any(build_dir.glob(f"{extension_name}*.whl")):
61+
if not any(build_dir.glob(f"*{extension_name}*.whl")):
6262
subprocess.run(
63-
["azdev", "extension", "build", extension.replace("azext_", ""), "--dist-dir", build_dir.as_posix()],
63+
["azdev", "extension", "build", extension_name, "--dist-dir", build_dir.as_posix()],
6464
check=True,
6565
)
6666

0 commit comments

Comments
 (0)