feat: add module support to JustfileFixture#5
Open
bluefing wants to merge 1 commit intoDataBooth:mainfrom
Open
feat: add module support to JustfileFixture#5bluefing wants to merge 1 commit intoDataBooth:mainfrom
bluefing wants to merge 1 commit intoDataBooth:mainfrom
Conversation
Changed Files
|
944eeeb to
0e816cb
Compare
Flattens the nested module tree from just --dump into a flat dict keyed by recipe namepaths (e.g. module::submodule::recipe). All existing methods (is_private, dependencies, parameters, etc.) work transparently with full module paths. Adds all_modules property for module discovery. Backwards compatible — justfiles without modules work unchanged.
0e816cb to
46a61b3
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.
Adds module-aware recipe resolution to
JustfileFixture. Recipes from nested modules are flattened by namepath (e.g.infra::deploy::up), so all existing methods work transparently with full module paths.Closes #1
Changes
_flattened— cached single-pass walk of the dump, returning both recipes and modules_recipes— now returns the flattened dict keyed by namepath (was root-only)_flatten— static recursive walk of the module treeall_modules— property returning discovered module pathsTests
9 tests covering: namepath flattening, privacy across modules, dependencies, parameters, unknown namepath errors, module discovery, private recipe filtering, and standalone
_flattenusage.