fix(container): remove devcontainer-file from CONTAINER_RESOURCE_TYPES #10598

Merged
HAL9000 merged 1 commits from fix/v360/container-resource-types into master 2026-05-02 01:36:46 +00:00
3 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -131,7 +131,7 @@ Feature: Execution environment routing
Given I import CONTAINER_RESOURCE_TYPES
Then it should contain "container-instance"
And it should contain "devcontainer-instance"
And it should contain "devcontainer-file"
And it should not contain "devcontainer-file"
And it should not contain "git-checkout"
# ── ContainerUnavailableError ───────────────────────────────────────
+1 -1
View File
@@ -81,7 +81,7 @@ def _run_resource_types() -> None:
"""Verify container resource types."""
assert "container-instance" in CONTAINER_RESOURCE_TYPES
assert "devcontainer-instance" in CONTAINER_RESOURCE_TYPES
assert "devcontainer-file" in CONTAINER_RESOURCE_TYPES
assert "devcontainer-file" not in CONTAINER_RESOURCE_TYPES
assert "git-checkout" not in CONTAINER_RESOURCE_TYPES
print("resource-types-ok")
@@ -55,7 +55,6 @@ CONTAINER_RESOURCE_TYPES: frozenset[str] = frozenset(
{
"container-instance",
"devcontainer-instance",
"devcontainer-file",
}
)