File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 44from pathlib import Path
55from textwrap import dedent
66
7- import uv
8-
97from prefect import flow , get_client
108from prefect .deployments import run_deployment
119from 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" ,
You can’t perform that action at this time.
0 commit comments