feat: select qtest files - #58
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Adds deterministic qtest corpus selection and enumeration via --filter and --list, codified in RFC 0115 and documented across the syntax index and executable manuals, while aiming to preserve existing qtest output/fuel/JSON/TAP behavior by default.
Changes:
- Implement
qtest --filter TEXT(path substring filtering) andqtest --list(non-executing enumeration). - Extend CLI integration tests to cover filtering, listing, no-match, and flag conflicts.
- Add RFC 0115 and propagate documentation updates across README, syntax index, and all five manuals (source + rendered docs).
Reviewed changes
Copilot reviewed 22 out of 22 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| tests/cli_tools.rs | Adds CLI-level coverage for qtest --filter / qtest --list and related error cases. |
| src/bin/qtest.rs | Implements new CLI flags, selection logic, and listing mode for qtest. |
| RFCs/0115-qtest-selection.md | Defines the RFC contract for deterministic qtest filtering and enumeration. |
| RFCs/0000-project-scope.md | Updates project RFC coverage range to include RFC 0115. |
| README.md | Updates README to reference RFC 0115 as the latest governing RFC. |
| manuals/manual.zh-CN.qc | Documents qtest --filter / qtest --list in the executable manual source. |
| manuals/manual.latin.qc | Documents qtest --filter / qtest --list in the executable manual source. |
| manuals/manual.en.qc | Documents qtest --filter / qtest --list in the executable manual source. |
| manuals/manual.devanagari-sa.qc | Documents qtest --filter / qtest --list in the executable manual source. |
| manuals/manual.classical-zh.qc | Documents qtest --filter / qtest --list in the executable manual source. |
| docs/syntax.zh-CN.md | Updates syntax index to mention the new qtest selection/listing workflow. |
| docs/syntax.en.md | Updates syntax index to mention the new qtest selection/listing workflow. |
| docs/manual.zh-CN.md | Regenerates Markdown manual content reflecting new qtest flags. |
| docs/manual.zh-CN.html | Regenerates HTML manual content reflecting new qtest flags. |
| docs/manual.latin.md | Regenerates Markdown manual content reflecting new qtest flags. |
| docs/manual.latin.html | Regenerates HTML manual content reflecting new qtest flags. |
| docs/manual.en.md | Regenerates Markdown manual content reflecting new qtest flags. |
| docs/manual.en.html | Regenerates HTML manual content reflecting new qtest flags. |
| docs/manual.devanagari.sa.md | Regenerates Markdown manual content reflecting new qtest flags. |
| docs/manual.devanagari-sa.html | Regenerates HTML manual content reflecting new qtest flags. |
| docs/manual.classical-zh.md | Regenerates Markdown manual content reflecting new qtest flags. |
| docs/manual.classical-zh.html | Regenerates HTML manual content reflecting new qtest flags. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
tiye
force-pushed
the
feat/qtest-selection
branch
from
August 22, 2026 17:45
3953914 to
a0f92c4
Compare
tiye
force-pushed
the
feat/context-builder-api
branch
3 times, most recently
from
August 22, 2026 18:35
b43b920 to
1ff02f9
Compare
tiye
force-pushed
the
feat/qtest-selection
branch
from
August 22, 2026 18:35
2f35c37 to
db7d796
Compare
tiye
force-pushed
the
feat/context-builder-api
branch
from
August 22, 2026 18:54
1ff02f9 to
f202b93
Compare
tiye
force-pushed
the
feat/qtest-selection
branch
from
August 23, 2026 03:44
db7d796 to
1bcc853
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
qtest --filter TEXTand non-executingqtest --listValidation
make docsmake checkqtest --list --filter stdlib tests/scriptsThis PR is stacked on PR #57 and is intentionally not merged independently.