(tmp_path)
| 215 | |
| 216 | |
| 217 | def test_skill_md_too_big(tmp_path): |
| 218 | sd = _write_skill( |
| 219 | tmp_path, |
| 220 | "big-skill", |
| 221 | skill_md_bytes=SKILL_MD_MAX_BYTES + 1, |
| 222 | ) |
| 223 | result = validate_skill(sd) |
| 224 | assert not result.passed |
| 225 | assert any("SKILL.md" in e and "bytes" in e for e in result.errors) |
| 226 | |
| 227 | |
| 228 | def test_reference_too_big(tmp_path): |
nothing calls this directly
no test coverage detected