test(fixtures): add include-path multi-value handling tests#1456
Open
niklasmarderx wants to merge 1 commit intoorhun:mainfrom
Open
test(fixtures): add include-path multi-value handling tests#1456niklasmarderx wants to merge 1 commit intoorhun:mainfrom
niklasmarderx wants to merge 1 commit intoorhun:mainfrom
Conversation
Add two fixture tests that verify --include-path works correctly with multiple glob patterns: - test-include-path-repeated-flag: uses separate --include-path flags - test-include-path-space-separated: uses a single flag with space-separated globs Both should produce identical output, filtering commits to only those that touch files matching the given patterns. Closes orhun#1455
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.
Add two fixture tests that verify
--include-pathhandles multiple glob patterns correctly (#1455):--include-path 'website/**/*' --include-path 'docs/**/*'--include-path 'website/**/* docs/**/*'Both use the same commit history (files in
website/,src/, anddocs/) and expect the same filtered output — only commits touchingwebsite/ordocs/paths.The workflow entries for
test-fixtures.ymlneed to be added separately since fork pushes can't modify workflow files. Here's what to add to the matrix:Closes #1455