We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test_paths
test_paths - i.e. passing a list of strings (instead of querying the filesystem) can fail:
Non-unique paths can be passed.
from filefisher import FileFinder ff = FileFinder( path_pattern="{cat}", file_pattern="{file}", test_paths=["a/file1", "a/file1"] ) ff.find_files() # fails (correctly)
find_paths can fail with seemingly duplicated paths:
find_paths
from filefisher import FileFinder ff = FileFinder( path_pattern="{cat}", file_pattern="{file}", test_paths=["a/file1", "a/file2"] ) ff.find_files() # works ff.find_paths() # fails (but should not)
not a blocker because it does not affect the "real" functionality.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
test_paths
- i.e. passing a list of strings (instead of querying the filesystem) can fail:Non-unique paths can be passed.
find_paths
can fail with seemingly duplicated paths:not a blocker because it does not affect the "real" functionality.
The text was updated successfully, but these errors were encountered: