Skip to content

Commit 3852f8d

Browse files
committed
fix: rename test and skip inherited test_options_include_skills_flag for Zed
- Skip inherited test_options_include_skills_flag (not applicable — Zed is always skills-based with no --skills flag) - Add test_options_do_not_include_skills_flag with correct name matching the assertion (--skills is absent)
1 parent ee17c43 commit 3852f8d

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

tests/integrations/test_integration_zed.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@ class TestZedIntegration(SkillsIntegrationTests):
1717
CONTEXT_FILE = "AGENTS.md"
1818

1919
def test_options_include_skills_flag(self):
20-
"""Zed is always skills-based and does not expose a --skills option."""
20+
"""Not applicable to Zed — Zed is always skills-based with no --skills flag."""
21+
pytest.skip("Zed is always skills-based and does not expose a --skills option")
22+
23+
def test_options_do_not_include_skills_flag(self):
24+
"""Zed is always skills-based; no --skills option is exposed."""
2125
i = get_integration(self.KEY)
2226
assert i is not None
2327
opts = i.options()

0 commit comments

Comments
 (0)