From b383bab50b4878da87c078d24f69405249895ae0 Mon Sep 17 00:00:00 2001 From: forkless Date: Mon, 1 Jun 2026 18:42:39 +0200 Subject: [PATCH] Move _check.py to tests/ --- skills/diligence/SKILL.md | 2 +- _check.py => tests/_check.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename _check.py => tests/_check.py (100%) diff --git a/skills/diligence/SKILL.md b/skills/diligence/SKILL.md index 347aab9..70bc9e4 100644 --- a/skills/diligence/SKILL.md +++ b/skills/diligence/SKILL.md @@ -7,7 +7,7 @@ description: Verification checklist for code changes — always run before claim Before reporting any task as complete, verify: -1. **Doc coverage** — run `python3 _check.py` to confirm zero undocumented functions. +1. **Doc coverage** — run `python3 tests/_check.py` to confirm zero undocumented functions. 2. **Compilation** — `cargo check --workspace` must pass with no errors. 3. **Git status** — no uncommitted changes unless intentionally deferred. 4. **Remote parity** — `git log --oneline -1` matches `origin/master`. diff --git a/_check.py b/tests/_check.py similarity index 100% rename from _check.py rename to tests/_check.py