Aller au contenu
login
arrow_backRetour aux issues
no-human-ai/no_human #10

`nh test --help` prints stale test counts (721) — the suite has ~9,400 tests

ecoDébutant documentation good first issue

descriptionDescription

\`\`\` $ nh test --help Modes: fast — 711 tests, ~28s (skip slow integration tests) full — 721 tests, ~3min (all tests, parallel) slow — 10 tests, ~3min (eval replay + integration only) \`\`\` Source: the \`test\` command docstring in \`src/no_human/cli/commands.py\`. On the same tree: \`\`\` $ python -m pytest --collect-only -q | tail -1 # 9413 tests collected $ python -m pytest --collect-only -q -m "not slow" # 9176/9413 $ python -m pytest --collect-only -q -m "slow" # 237/9413 \`\`\` **Fix:** replace the hard-coded counts and timings with what each mode *selects* (\`fast\` = \`not slow and not nightly\`, \`slow\` = \`slow\`, \`full\` = everything) so the help never goes stale again. ~6 lines.
codeOuvre sur GitHub