File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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'
You can’t perform that action at this time.
0 commit comments