Skip to content

Commit f14ad4d

Browse files
desertaxleclaude
andauthored
Fix docker deploy integration test failing due to uv import (#19899)
Co-authored-by: Claude Opus 4.5 <[email protected]>
1 parent 759a1bc commit f14ad4d

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

integration-tests/test_docker_deploy.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
from pathlib import Path
55
from textwrap import dedent
66

7-
import uv
8-
97
from prefect import flow, get_client
108
from prefect.deployments import run_deployment
119
from prefect.docker.docker_image import DockerImage
@@ -37,7 +35,7 @@ def test_docker_deploy():
3735
try:
3836
subprocess.check_call(
3937
[
40-
uv.find_uv_bin(),
38+
"uv",
4139
"run",
4240
"--isolated",
4341
"prefect",
@@ -87,7 +85,7 @@ def test_docker_deploy():
8785
# Execute the flow run
8886
subprocess.check_call(
8987
[
90-
uv.find_uv_bin(),
88+
"uv",
9189
"run",
9290
"--isolated",
9391
"--with",
@@ -111,7 +109,7 @@ def test_docker_deploy():
111109
# Cleanup
112110
subprocess.check_call(
113111
[
114-
uv.find_uv_bin(),
112+
"uv",
115113
"run",
116114
"--isolated",
117115
"prefect",

0 commit comments

Comments
 (0)