Skip to content
Open
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: 8 additions & 0 deletions .scripts/agent-integration-tests/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@
from databricks_ai_bridge.lakebase import LakebaseClient
from template_config import FileEdit

# Strip runner-specific uv config so template-side `uv run` / `uv sync`
# don't bake `excluded-newer` (global + per-package) into the template's
# `uv.lock`, which would then be rejected by Apps runtime's
# `uv sync --locked`. See databricks/app-templates#206 for full rationale.
os.environ.pop("UV_EXCLUDE_NEWER", None)
os.environ.pop("UV_CONFIG_FILE", None)
os.environ["UV_NO_CONFIG"] = "1"

# ---------------------------------------------------------------------------
# Constants
# ---------------------------------------------------------------------------
Expand Down