test: Add support and unit tests for handling of multiple files passed as a pattern in data_config #416
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.
Description of the change
Added unit test for testing handling of multiple files passed as a pattern in
data_configyaml file.List of supported/not supported examples for the feature of passing files via pattern:
Not supported: Passing all files of the directory with
/*without mentioning the type of extensionFor example:
/path/to/directory/*Supported: Passing all files of the directory with
/*along with mentioning the type of extensionFor example:
/path/to/directory/*.jsonOR/path/to/directory/*.arrowOR/path/to/directory/*.parquetNot supported: Passing files of the directory which matches any pattern for example
*input_output*without mentioning the type of extension. For example:/path/to/folder/*input_output*Supported: Passing files of the directory which matches any pattern for example
*input_output*along with mentioning the type of extension.For example:
/path/to/folder/*input_output*.jsonOR/path/to/folder/*input_output*.parquetOR/path/to/folder/*input_output*.arrowRelated issue number
https://github.ibm.com/ai-foundation/watson-fm-stack-tracker/issues/1487
How to verify the PR
Verify unit test additions.
Was the PR tested