feat: add macos container backend scaffold
lint / lint (push) Successful in 1m54s
test / unit (pull_request) Successful in 35s
test / integration (pull_request) Successful in 20s

This commit is contained in:
2026-06-10 18:14:17 +00:00
parent 3f04567290
commit 4abad499b6
16 changed files with 919 additions and 3 deletions
+5 -2
View File
@@ -44,8 +44,11 @@ class TestGetBottleBackend(unittest.TestCase):
class TestKnownBackendNames(unittest.TestCase):
def test_returns_both_backends_sorted(self):
self.assertEqual(("docker", "smolmachines"), known_backend_names())
def test_returns_backends_sorted(self):
self.assertEqual(
("docker", "macos-container", "smolmachines"),
known_backend_names(),
)
class TestEnumerateActiveAgents(unittest.TestCase):