Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions .changeset/fruity-pillows-peel.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"wrangler": patch
---

Support container image names without account ID
5 changes: 4 additions & 1 deletion packages/wrangler/e2e/containers.dev.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ const imageSource = ["pull", "build"];
// We can only really run these tests on Linux, because we build our images for linux/amd64,
// and github runners don't really support container virtualization in any sane way
describe
.skipIf(process.platform !== "linux" && process.env.CI === "true")
.skipIf(
!CLOUDFLARE_ACCOUNT_ID ||
(process.platform !== "linux" && process.env.CI === "true")
)
.each(imageSource)(
"containers local dev tests: %s",
{ timeout: 90_000 },
Expand Down
Loading
Loading