(tmp_path)
| 94 | |
| 95 | |
| 96 | def test_missing_skill_md(tmp_path): |
| 97 | sd = tmp_path / "empty-skill" |
| 98 | sd.mkdir() |
| 99 | result = validate_skill(sd) |
| 100 | assert not result.passed |
| 101 | assert any("SKILL.md" in e for e in result.errors) |
| 102 | |
| 103 | |
| 104 | def test_no_frontmatter(tmp_path): |
nothing calls this directly
no test coverage detected