Skip to content

perf(test): split cumulative suites across shards - #8320

Merged
cv merged 3 commits into
mainfrom
perf/split-cumulative-tests
Aug 5, 2026
Merged

perf(test): split cumulative suites across shards#8320
cv merged 3 commits into
mainfrom
perf/split-cumulative-tests

Conversation

@cv

@cv cv commented Aug 5, 2026

Copy link
Copy Markdown
Collaborator

Summary

Three cumulative-cost integration test files were atomic Vitest shard inputs with recent CI medians of 63–84 seconds. Their behavior groups now live in separate test files with shared fixtures, allowing Vitest to distribute them across CLI shards.

Changes

  • Split PR Review Advisor tests into normalization, context, quality, and rendering files.
  • Split contributor compliance gate tests into PR-state, Actions, and run-selection files.
  • Split E2E coordinator evidence tests into seed, final-observation, and rejection files.
  • Extract shared test fixtures without changing production code or assertions.
  • Retain eight CLI shards until post-merge timing evidence shows whether additional runner use is justified.

Type of Change

  • Code change (feature, bug fix, or refactor)
  • Code change with doc updates
  • Doc only (prose changes, no code sample modifications)
  • Doc only (includes code sample changes)

Quality Gates

  • Tests added or updated for changed behavior
  • Existing tests cover changed behavior — justification:
  • Tests not applicable — justification:
  • Docs updated for user-facing behavior changes
  • Docs not applicable — justification: This reorganizes integration tests and does not change production or user-visible behavior.
  • Sensitive paths changed (security, policy, credentials, preflight, onboarding, inference, runner, sandbox, or messaging)
  • Sensitive-path review completed or maintainer-approved waiver recorded — reviewer/approval link/justification:
  • Non-success, skipped, or missing CI check accepted by maintainer — check name, approval link, and follow-up issue:

Documentation Writer Review

  • Documentation writer subagent reviewed the completed changes
  • Result: no-docs-needed
  • Evidence: The change only reorganizes existing integration tests and removes unused imports; production and user-visible behavior are unchanged.
  • Agent: Pi CLI

DGX Station Hardware Evidence

  • Tested on DGX Station
  • Tested commit:
  • Station profile/scenario:
  • Result:
  • Supporting evidence:

Verification

  • PR description includes a Signed-off-by: line and every commit appears as Verified in GitHub
  • Normal pre-commit, commit-msg, and pre-push hooks passed, or npm run validate:pr passed after refreshing origin/main when hooks were skipped or unavailable
  • Targeted behavior tests pass for the current change set, or tests are marked not applicable above — 224 split tests passed across 10 files; npm run typecheck:cli passed; unused-import scan returned no findings; pre-commit and pre-push hooks passed.
  • Applicable broad gate passed — npm test for broad runtime/test-harness changes; npm run check for repo-wide validation/coverage changes
  • Quality Gates section completed with required justifications or waivers
  • No secrets, API keys, or credentials committed
  • npm run docs builds without warnings (doc changes only)
  • Doc pages follow the style guide (doc changes only)
  • New doc pages include SPDX header and frontmatter (new pages only)

Signed-off-by: Carlos Villela cvillela@nvidia.com

Summary by CodeRabbit

  • Tests
    • Added extensive coverage for PR review advisor normalization, rendering, security handling, provenance, validation, and error recovery.
    • Added reusable fixtures for deterministic review scenarios and merge-gate coordinator evidence.
    • Expanded merge-gate coverage for workflow evidence, pagination, retries, identity validation, stale data, and fail-closed behavior.
    • Removed superseded test suites and consolidated coverage into focused scenarios.

@cv cv self-assigned this Aug 5, 2026
@coderabbitai

coderabbitai Bot commented Aug 5, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: 2a481539-d071-4d47-94de-5a2d9bb20e7e

📥 Commits

Reviewing files that changed from the base of the PR and between a88d04b and fb24406.

📒 Files selected for processing (11)
  • test/pr-review-advisor-context.test.ts
  • test/pr-review-advisor-normalization.test.ts
  • test/pr-review-advisor-quality.test.ts
  • test/pr-review-advisor-rendering.test.ts
  • test/skills/check-gates-actions-evidence.test.ts
  • test/skills/check-gates-coordinator-final-evidence.test.ts
  • test/skills/check-gates-coordinator-rejection-evidence.test.ts
  • test/skills/check-gates-coordinator-seed-evidence.test.ts
  • test/skills/check-gates-coordinator-test-fixtures.ts
  • test/skills/check-gates-pr-state-evidence.test.ts
  • test/skills/check-gates-run-selection-evidence.test.ts
💤 Files with no reviewable changes (5)
  • test/pr-review-advisor-quality.test.ts
  • test/pr-review-advisor-context.test.ts
  • test/skills/check-gates-pr-state-evidence.test.ts
  • test/skills/check-gates-coordinator-test-fixtures.ts
  • test/skills/check-gates-run-selection-evidence.test.ts
🚧 Files skipped from review as they are similar to previous changes (3)
  • test/skills/check-gates-coordinator-seed-evidence.test.ts
  • test/skills/check-gates-actions-evidence.test.ts
  • test/pr-review-advisor-rendering.test.ts

📝 Walkthrough

Walkthrough

Added shared advisor fixtures and replaced monolithic advisor and merge-gate test coverage with focused Vitest suites. The tests cover advisor normalization, provenance, rendering, coordinator evidence, PR state, Actions run selection, pagination, retries, and fail-closed validation.

Changes

PR review advisor coverage

Layer / File(s) Summary
Advisor fixture contracts
test/helpers/pr-review-advisor-test-fixtures.ts
Added deterministic metadata, schema loading, and complete result factories with override support.
Advisor context and provenance tests
test/pr-review-advisor-context.test.ts
Added coverage for prompt contracts, context artifacts, issue references, patch signals, trusted provenance, marker isolation, and sticky-comment upserts.
Advisor normalization and E2E reconciliation
test/pr-review-advisor-normalization.test.ts
Added coverage for provider configuration, result normalization, E2E guidance merging, selector promotion, rendering, and malformed enum fallbacks.
Advisor quality and comment rendering
test/pr-review-advisor-quality.test.ts, test/pr-review-advisor-rendering.test.ts
Added coverage for security completion, trusted skills, synthesis preservation, finding presentation, escaping, provenance, and schema validation.
Previous monolithic advisor suite
test/pr-review-advisor.test.ts
Removed the former consolidated advisor test suite.

Maintainer merge-gate evidence

Layer / File(s) Summary
Coordinator evidence fixtures
test/skills/check-gates-coordinator-test-fixtures.ts
Added configurable fixtures for coordinator runs, seed jobs, retries, pagination, status checks, fork lifecycles, and gate execution.
Coordinator seed and lifecycle evidence
test/skills/check-gates-coordinator-seed-evidence.test.ts
Added tests for authorization, seed selection, retries, pagination, stale evidence, run reuse, and cross-midnight timing.
Actions run selection and evidence
test/skills/check-gates-run-selection-evidence.test.ts, test/skills/check-gates-actions-evidence.test.ts
Added tests for substantive and latest attempts, matrix jobs, SHA binding, E2E identity, duplicate runs, pagination, and fail-closed collection.
PR state and immutable CI evidence
test/skills/check-gates-pr-state-evidence.test.ts
Added tests for changing PR state, immutable CI identity, installer evidence, workflow compatibility, and invalid coordinator evidence.
Coordinator rejection and final evidence
test/skills/check-gates-coordinator-rejection-evidence.test.ts, test/skills/check-gates-coordinator-final-evidence.test.ts
Added tests for inventory caps, partition consistency, metadata mutations, timestamps, final observations, repository checks, and required-check changes.
Previous merge-gate suites
test/skills/check-gates-evidence.test.ts, test/skills/check-gates-coordinator-evidence.test.ts
Removed the former consolidated merge-gate evidence suites.

Estimated code review effort: 5 (Critical) | ~120 minutes

Possibly related PRs

  • NVIDIA/NemoClaw#8258: Expands and reorganizes tests and fixtures for E2E coordinator evidence validation.

Suggested labels: refactor, area: ci, chore

Suggested reviewers: senthilr-nv

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (4 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly and concisely describes splitting cumulative test suites across Vitest shards, which matches the pull request objectives.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches 💡 1
📝 Generate docstrings 💡
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch perf/split-cumulative-tests

Comment @coderabbitai help to get the list of available commands.

@github-code-quality

github-code-quality Bot commented Aug 5, 2026

Copy link
Copy Markdown
Contributor

Code Coverage Overview

Languages: TypeScript

TypeScript / code-coverage/plugin

The overall coverage in commit fb24406 in the perf/split-cumulativ... branch remains at 96%, unchanged from commit a82887e in the main branch.


Updated August 05, 2026 09:56 UTC

Comment thread test/pr-review-advisor-context.test.ts Fixed
Comment thread test/pr-review-advisor-context.test.ts Fixed
Comment thread test/pr-review-advisor-context.test.ts Fixed
Comment thread test/pr-review-advisor-context.test.ts Fixed
Comment thread test/pr-review-advisor-context.test.ts Fixed
Comment thread test/pr-review-advisor-context.test.ts Fixed
Comment thread test/pr-review-advisor-normalization.test.ts Fixed
Comment thread test/pr-review-advisor-normalization.test.ts Fixed
Comment thread test/pr-review-advisor-normalization.test.ts Fixed
Comment thread test/pr-review-advisor-normalization.test.ts Fixed

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (3)
test/pr-review-advisor-context.test.ts (1)

4-39: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Remove unused imports from the split test files.

The copied import blocks load unused modules and obscure each file's scope.

  • test/pr-review-advisor-context.test.ts: remove Ajv2020, buildRiskPlan, the session imports, normalizeReviewResult, readTrustedSecurityReviewSkill, recordSynthesisValidationFailureOnDraft, renderDetailedReview, renderSummary, reviewLedgerConsistencyIssues, reviewQualityIssues, buildComment, and testTimeoutOptions.
  • test/pr-review-advisor-normalization.test.ts: remove fs, tmpdir, Ajv2020, the GitHub imports, and the unused analyze.mts imports.
  • test/pr-review-advisor-quality.test.ts: remove tmpdir, Ajv2020, the GitHub, session, and buildRiskPlan imports, the unused analyze.mts imports, and testTimeoutOptions.
  • test/pr-review-advisor-rendering.test.ts: remove fs, tmpdir, the GitHub, session, and buildRiskPlan imports, the unused analyze.mts imports, and testTimeoutOptions.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@test/pr-review-advisor-context.test.ts` around lines 4 - 39, Remove the
listed unused imports from the split test files: in
test/pr-review-advisor-context.test.ts lines 4-39 remove Ajv2020, buildRiskPlan,
the session imports, the specified analyze.mts symbols, buildComment, and
testTimeoutOptions; apply the corresponding removals in
test/pr-review-advisor-normalization.test.ts lines 4-39,
test/pr-review-advisor-quality.test.ts lines 4-39, and
test/pr-review-advisor-rendering.test.ts lines 4-43 for their unused filesystem,
GitHub, session, risk-plan, analyze.mts, Ajv2020, and timeout imports, leaving
each file scoped only to symbols it uses.
test/skills/check-gates-run-selection-evidence.test.ts (1)

28-142: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Split this test so each title matches one claim.

The title describes cancellation of a later metadata-only run. The body then asserts two more independent behaviors: rejection of an invalid job shape (Line 82) and rejection of an unexpected job (Line 113). A failure in the second or third block reports the first title. The split of this suite is a good moment to separate the three scenarios into three it blocks or one it.each matrix.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@test/skills/check-gates-run-selection-evidence.test.ts` around lines 28 -
142, Split the test into three independently named cases: the canceled later
metadata-only run, the incomplete latest-attempt job shape, and the
unexpected-job rejection. Move each corresponding runGate setup and assertions
into its own it block (or use an it.each matrix), ensuring each title describes
only the behavior it verifies.
test/skills/check-gates-coordinator-seed-evidence.test.ts (1)

17-33: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Unused imports remain in every split file. The split copied the monolithic import block into each new file without trimming it to the symbols each file actually uses. If the CLI or plugin type-check config enables noUnusedLocals, or if lint runs on these paths, the build fails.

  • test/skills/check-gates-coordinator-seed-evidence.test.ts#L17-L33: remove HEAD_SHA, runGate, successfulRequiredChecks, and the types ActionRunFixture, ComplianceFixture, CoordinatorRunPartitionFixture.
  • test/skills/check-gates-run-selection-evidence.test.ts#L5-L25: remove BASE_SHA, coordinationCheck, E2E_COORDINATION_EXTERNAL_ID, installerHashRun, REQUIRED_CHECK_NAMES, successfulRequiredChecksWithoutE2e.
  • test/skills/check-gates-actions-evidence.test.ts#L5-L25: remove coordinationCheck, E2E_COORDINATION_EXTERNAL_ID, installerHashRun, prWorkflowJobs, prWorkflowRun, and the type ActionRunFixture.
  • test/skills/check-gates-pr-state-evidence.test.ts#L5-L25: remove CUSTOM_RUN_URL, e2eChecks, e2eJobs, e2eRunFixture, INCOMPLETE_E2E, prWorkflowJobs, REQUIRED_CHECK_NAMES, and the types ActionJobFixture and ActionRunFixture.
  • test/skills/check-gates-coordinator-rejection-evidence.test.ts#L13-L29: remove coordinationCheck, e2eManualCoordinatorRun, exactDiffGateRun, prWorkflowRun, runGate, successfulRequiredChecks, and the four imported types.
  • test/skills/check-gates-coordinator-final-evidence.test.ts#L12-L28: remove BASE_SHA, HEAD_SHA, e2eManualCoordinatorRun, exactDiffGateRun, prWorkflowRun, runGate, successfulRequiredChecks, and the four imported types.
  • test/skills/check-gates-coordinator-test-fixtures.ts#L4-L4: remove the whole vitest import; this module exports fixtures only.

As per coding guidelines: "Keep TypeScript implementation and test code compatible with the repository CLI and plugin type-check configurations."

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@test/skills/check-gates-coordinator-seed-evidence.test.ts` around lines 17 -
33, Trim each split test file's imports to only the symbols it uses: in
test/skills/check-gates-coordinator-seed-evidence.test.ts#L17-L33 remove
HEAD_SHA, runGate, successfulRequiredChecks, ActionRunFixture,
ComplianceFixture, and CoordinatorRunPartitionFixture; in
test/skills/check-gates-run-selection-evidence.test.ts#L5-L25 remove BASE_SHA,
coordinationCheck, E2E_COORDINATION_EXTERNAL_ID, installerHashRun,
REQUIRED_CHECK_NAMES, and successfulRequiredChecksWithoutE2e; in
test/skills/check-gates-actions-evidence.test.ts#L5-L25 remove
coordinationCheck, E2E_COORDINATION_EXTERNAL_ID, installerHashRun,
prWorkflowJobs, prWorkflowRun, and ActionRunFixture; in
test/skills/check-gates-pr-state-evidence.test.ts#L5-L25 remove CUSTOM_RUN_URL,
e2eChecks, e2eJobs, e2eRunFixture, INCOMPLETE_E2E, prWorkflowJobs,
REQUIRED_CHECK_NAMES, ActionJobFixture, and ActionRunFixture; in
test/skills/check-gates-coordinator-rejection-evidence.test.ts#L13-L29 remove
coordinationCheck, e2eManualCoordinatorRun, exactDiffGateRun, prWorkflowRun,
runGate, successfulRequiredChecks, and all four imported types; in
test/skills/check-gates-coordinator-final-evidence.test.ts#L12-L28 remove
BASE_SHA, HEAD_SHA, e2eManualCoordinatorRun, exactDiffGateRun, prWorkflowRun,
runGate, successfulRequiredChecks, and all four imported types; and remove the
entire vitest import from
test/skills/check-gates-coordinator-test-fixtures.ts#L4-L4.

Source: Coding guidelines

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Nitpick comments:
In `@test/pr-review-advisor-context.test.ts`:
- Around line 4-39: Remove the listed unused imports from the split test files:
in test/pr-review-advisor-context.test.ts lines 4-39 remove Ajv2020,
buildRiskPlan, the session imports, the specified analyze.mts symbols,
buildComment, and testTimeoutOptions; apply the corresponding removals in
test/pr-review-advisor-normalization.test.ts lines 4-39,
test/pr-review-advisor-quality.test.ts lines 4-39, and
test/pr-review-advisor-rendering.test.ts lines 4-43 for their unused filesystem,
GitHub, session, risk-plan, analyze.mts, Ajv2020, and timeout imports, leaving
each file scoped only to symbols it uses.

In `@test/skills/check-gates-coordinator-seed-evidence.test.ts`:
- Around line 17-33: Trim each split test file's imports to only the symbols it
uses: in test/skills/check-gates-coordinator-seed-evidence.test.ts#L17-L33
remove HEAD_SHA, runGate, successfulRequiredChecks, ActionRunFixture,
ComplianceFixture, and CoordinatorRunPartitionFixture; in
test/skills/check-gates-run-selection-evidence.test.ts#L5-L25 remove BASE_SHA,
coordinationCheck, E2E_COORDINATION_EXTERNAL_ID, installerHashRun,
REQUIRED_CHECK_NAMES, and successfulRequiredChecksWithoutE2e; in
test/skills/check-gates-actions-evidence.test.ts#L5-L25 remove
coordinationCheck, E2E_COORDINATION_EXTERNAL_ID, installerHashRun,
prWorkflowJobs, prWorkflowRun, and ActionRunFixture; in
test/skills/check-gates-pr-state-evidence.test.ts#L5-L25 remove CUSTOM_RUN_URL,
e2eChecks, e2eJobs, e2eRunFixture, INCOMPLETE_E2E, prWorkflowJobs,
REQUIRED_CHECK_NAMES, ActionJobFixture, and ActionRunFixture; in
test/skills/check-gates-coordinator-rejection-evidence.test.ts#L13-L29 remove
coordinationCheck, e2eManualCoordinatorRun, exactDiffGateRun, prWorkflowRun,
runGate, successfulRequiredChecks, and all four imported types; in
test/skills/check-gates-coordinator-final-evidence.test.ts#L12-L28 remove
BASE_SHA, HEAD_SHA, e2eManualCoordinatorRun, exactDiffGateRun, prWorkflowRun,
runGate, successfulRequiredChecks, and all four imported types; and remove the
entire vitest import from
test/skills/check-gates-coordinator-test-fixtures.ts#L4-L4.

In `@test/skills/check-gates-run-selection-evidence.test.ts`:
- Around line 28-142: Split the test into three independently named cases: the
canceled later metadata-only run, the incomplete latest-attempt job shape, and
the unexpected-job rejection. Move each corresponding runGate setup and
assertions into its own it block (or use an it.each matrix), ensuring each title
describes only the behavior it verifies.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: 460fcfda-010b-4264-a9f9-e5dfa51eff89

📥 Commits

Reviewing files that changed from the base of the PR and between a82887e and a88d04b.

📒 Files selected for processing (15)
  • test/helpers/pr-review-advisor-test-fixtures.ts
  • test/pr-review-advisor-context.test.ts
  • test/pr-review-advisor-normalization.test.ts
  • test/pr-review-advisor-quality.test.ts
  • test/pr-review-advisor-rendering.test.ts
  • test/pr-review-advisor.test.ts
  • test/skills/check-gates-actions-evidence.test.ts
  • test/skills/check-gates-coordinator-evidence.test.ts
  • test/skills/check-gates-coordinator-final-evidence.test.ts
  • test/skills/check-gates-coordinator-rejection-evidence.test.ts
  • test/skills/check-gates-coordinator-seed-evidence.test.ts
  • test/skills/check-gates-coordinator-test-fixtures.ts
  • test/skills/check-gates-evidence.test.ts
  • test/skills/check-gates-pr-state-evidence.test.ts
  • test/skills/check-gates-run-selection-evidence.test.ts
💤 Files with no reviewable changes (3)
  • test/skills/check-gates-evidence.test.ts
  • test/pr-review-advisor.test.ts
  • test/skills/check-gates-coordinator-evidence.test.ts

@github-actions

github-actions Bot commented Aug 5, 2026

Copy link
Copy Markdown
Contributor

PR Review Advisor — No blocking findings reported

Advisor assessment: No blocking advisor findings reported
Next action: No advisor follow-up needed.
Findings: 0 blockers · 0 warnings · 0 suggestions

Model lanes

  • GPT-5.6 Terra (primary): Completed · high confidence · 0 blockers · 0 warnings · 0 suggestions
  • Nemotron 3 Ultra (second opinion): Completed · high confidence · 0 blockers · 0 warnings · 0 suggestions
  • Model comparison: normalized findings match; normalized terminology decisions differ; normalized E2E selections match; severity counts match.

Second-opinion terminology and E2E selections are advisory. They do not change the primary assessment or E2E / PR Gate.

2 semantic terminology decisions

Terminology decisions are advisory. They affect the assessment only when a separate finding identifies concrete semantic impact.

  • established — final observation at test/skills/check-gates-coordinator-final-evidence.test.ts:68: Keep “final observation” for the final evidence read.
  • established — immutable identity at test/skills/check-gates-actions-evidence.test.ts:416: Keep “immutable identity” for invariant workflow evidence fields.

E2E guidance

Advisory only. E2E / PR Gate selects and runs jobs independently.

Recommended E2E: None

Workflow run details

This automated review informs maintainers. Warnings and suggestions do not require a response. A maintainer decides whether to merge.

@github-advanced-security github-advanced-security AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CodeQL found more than 20 potential problems in the proposed changes. Check the Files changed tab for more details.

@cv
cv merged commit 7eb0b08 into main Aug 5, 2026
91 of 97 checks passed
@cv
cv deleted the perf/split-cumulative-tests branch August 5, 2026 10:10
@github-actions github-actions Bot added the v0.0.103 Release target label Aug 5, 2026
@cv cv mentioned this pull request Aug 5, 2026
23 tasks
cv added a commit that referenced this pull request Aug 5, 2026
<!-- markdownlint-disable MD041 -->
## Summary

Merged PR #8320 deleted `test/pr-review-advisor.test.ts`, but its CLI
sharding timing hint remained. Remove the obsolete entry so the timing
manifest references only existing test files.

## Changes

- Remove the timing hint for the deleted monolithic PR Review Advisor
test file.
- Keep the split advisor tests on the conservative default timing until
CI produces replacement measurements.

## Type of Change

- [x] Code change (feature, bug fix, or refactor)
- [ ] Code change with doc updates
- [ ] Doc only (prose changes, no code sample modifications)
- [ ] Doc only (includes code sample changes)

## Quality Gates

- [x] Tests added or updated for changed behavior
- [ ] Existing tests cover changed behavior — justification:
- [ ] Tests not applicable — justification:
- [ ] Docs updated for user-facing behavior changes
- [x] Docs not applicable — justification: This changes CI-only
test-sharding data.
- [ ] Sensitive paths changed (security, policy, credentials, preflight,
onboarding, inference, runner, sandbox, or messaging)
- [ ] Sensitive-path review completed or maintainer-approved waiver
recorded — reviewer/approval link/justification:
- [ ] Non-success, skipped, or missing CI check accepted by maintainer —
check name, approval link, and follow-up issue:

## Documentation Writer Review

- [x] Documentation writer subagent reviewed the completed changes
- Result: `no-docs-needed`
- Evidence: The change removes an obsolete path from CI-only timing data
and does not affect user-visible behavior.
- Agent: Pi CLI
<!-- docs-review-head-sha: 33d5526 -->
<!-- docs-review-agents-blob-sha:
3dd7c24 -->

## DGX Station Hardware Evidence

- [ ] Tested on DGX Station
- Tested commit:
- Station profile/scenario:
- Result:
- Supporting evidence:

## Verification

- [x] PR description includes a `Signed-off-by:` line and every commit
appears as `Verified` in GitHub
- [x] Normal `pre-commit`, `commit-msg`, and `pre-push` hooks passed, or
`npm run validate:pr` passed after refreshing `origin/main` when hooks
were skipped or unavailable
- [x] Targeted behavior tests pass for the current change set, or tests
are marked not applicable above — `npx vitest run --project integration
test/cli-coverage-sequencer.test.ts` (8 passed)
- [ ] Applicable broad gate passed — `npm test` for broad
runtime/test-harness changes; `npm run check` for repo-wide
validation/coverage changes
- [x] Quality Gates section completed with required justifications or
waivers
- [x] No secrets, API keys, or credentials committed
- [ ] `npm run docs` builds without warnings (doc changes only)
- [ ] Doc pages follow the [style
guide](https://github.com/NVIDIA/NemoClaw/blob/main/docs/CONTRIBUTING.md)
(doc changes only)
- [ ] New doc pages include SPDX header and frontmatter (new pages only)

---
Signed-off-by: Carlos Villela <cvillela@nvidia.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

v0.0.103 Release target

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants