Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions integration-tests/test_docker_deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
from pathlib import Path
from textwrap import dedent

import uv

from prefect import flow, get_client
from prefect.deployments import run_deployment
from prefect.docker.docker_image import DockerImage
Expand Down Expand Up @@ -37,7 +35,7 @@ def test_docker_deploy():
try:
subprocess.check_call(
[
uv.find_uv_bin(),
"uv",
"run",
"--isolated",
"prefect",
Expand Down Expand Up @@ -87,7 +85,7 @@ def test_docker_deploy():
# Execute the flow run
subprocess.check_call(
[
uv.find_uv_bin(),
"uv",
"run",
"--isolated",
"--with",
Expand All @@ -111,7 +109,7 @@ def test_docker_deploy():
# Cleanup
subprocess.check_call(
[
uv.find_uv_bin(),
"uv",
"run",
"--isolated",
"prefect",
Expand Down