Skip to content
Draft
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
7 changes: 6 additions & 1 deletion acceptance/acceptance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,12 @@ func requirePrerequisites(t *testing.T) {
internal.RequireUV(t, "0.4")
// ruff 0.9.1 is pinned across the repo (python/pyproject.toml, Taskfile.yml);
// the check-formatting test's golden output assumes its formatter behavior.
internal.RequireRuff(t, "0.9.1")
// ruff is not bundled in the DBR test archive (only go, uv and jq are) and is
// absent from the serverless image, but no RunsOnDbr test needs it, so skip
// the check in DBR mode rather than failing the whole run.
if !WorkspaceTmpDir {
internal.RequireRuff(t, "0.9.1")
}
// Acceptance scripts import the stdlib tomllib module, added in Python 3.11.
internal.EnsurePython(t, "3.11")
}
Expand Down
Loading