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
1 change: 0 additions & 1 deletion .github/scripts/parse_publish_workers_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

ALLOWED_WORKERS: tuple[str, ...] = (
"acp",
"coder",
"console",
"database",
"harness",
Expand Down
10 changes: 5 additions & 5 deletions .github/scripts/tests/test_parse_publish_workers_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ def test_all_expands_to_full_list(self):
assert parse_workers(" ALL ") == list(ALLOWED_WORKERS)

def test_comma_separated_list(self):
assert parse_workers("shell,coder") == ["shell", "coder"]
assert parse_workers("shell,storage") == ["shell", "storage"]

def test_dedupe_preserves_order(self):
assert parse_workers("shell,coder,shell") == ["shell", "coder"]
assert parse_workers("shell,storage,shell") == ["shell", "storage"]

def test_whitespace_trimmed(self):
assert parse_workers(" shell , coder ") == ["shell", "coder"]
assert parse_workers(" shell , storage ") == ["shell", "storage"]

def test_unknown_worker_raises(self):
with pytest.raises(ValueError, match="unknown worker"):
Expand All @@ -54,13 +54,13 @@ def run_script(workers: str, github_output: Path) -> subprocess.CompletedProcess
def test_cli_writes_matrix_to_github_output(tmp_path):
out_file = tmp_path / "output"
out_file.write_text("")
result = run_script("shell,coder", out_file)
result = run_script("shell,storage", out_file)
assert result.returncode == 0
lines = out_file.read_text(encoding="utf-8").strip().splitlines()
assert len(lines) == 1
key, value = lines[0].split("=", 1)
assert key == "matrix"
assert json.loads(value) == ["shell", "coder"]
assert json.loads(value) == ["shell", "storage"]


def test_cli_unknown_worker_exits_nonzero():
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/create-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ on:
- acp
- approval-gate
- claude-code
- coder
- codex
- console
- context-manager
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ on:
- 'acp/v*'
- 'approval-gate/v*'
- 'claude-code/v*'
- 'coder/v*'
- 'codex/v*'
- 'console/v*'
- 'context-manager/v*'
Expand Down
212 changes: 0 additions & 212 deletions coder/CHANGELOG.md

This file was deleted.

Loading
Loading