refactor!: rename project to bot-bottle

Assisted-by: Codex
This commit is contained in:
2026-05-28 17:56:14 -04:00
parent 8875d8cc17
commit c08b09dc9f
200 changed files with 1271 additions and 1271 deletions
+2 -2
View File
@@ -13,7 +13,7 @@ import os
import subprocess
import unittest
from claude_bottle.backend.docker.network import (
from bot_bottle.backend.docker.network import (
network_create_egress,
network_create_internal,
network_remove,
@@ -40,7 +40,7 @@ class TestOrphanCleanup(unittest.TestCase):
def test_remove_missing_is_noop(self):
# Returning True == idempotent success.
self.assertTrue(network_remove(f"claude-bottle-net-{self.slug}-does-not-exist"))
self.assertTrue(network_remove(f"bot-bottle-net-{self.slug}-does-not-exist"))
@unittest.skipIf(
os.environ.get("GITEA_ACTIONS") == "true",