Skip to content

Commit db513ef

Browse files
committed
fix: update CI manifest bootstrap to expect all 5 tools
Signed-off-by: Damian Skrzyński <polprog.tech@gmail.com>
1 parent 4979421 commit db513ef

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,10 +170,13 @@ jobs:
170170
p = Path('/tmp/test-manifest.yaml')
171171
p.write_text(DEFAULT_MANIFEST_YAML)
172172
m = load_manifest(p, Path('/tmp'), Path('/tmp/tools'))
173-
assert len(m.enabled_tools) == 2, f'Expected 2 tools, got {len(m.enabled_tools)}'
173+
assert len(m.enabled_tools) == 5, f'Expected 5 tools, got {len(m.enabled_tools)}'
174174
slugs = {t.slug for t in m.enabled_tools}
175175
assert 'releasepilot' in slugs, 'releasepilot not found'
176176
assert 'releaseboard' in slugs, 'releaseboard not found'
177+
assert 'localesync' in slugs, 'localesync not found'
178+
assert 'flowboard' in slugs, 'flowboard not found'
179+
assert 'appsecone' in slugs, 'appsecone not found'
177180
for t in m.enabled_tools:
178181
assert t.source is not None, f'{t.slug} missing source'
179182
assert t.port is not None, f'{t.slug} missing port'

0 commit comments

Comments
 (0)