-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
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
fix: Respect glob=False
for cloud reads
#17860
Conversation
pub fn _limit_path_len_io_err(path: &Path, err: io::Error) -> PolarsError { | ||
let path = path.to_string_lossy(); | ||
let msg = if path.len() > 88 { | ||
let msg = if path.len() > 88 && !verbose() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
drive-by QOL - print the full path if POLARS_VERBOSE
is set
], | ||
) | ||
@pytest.mark.parametrize("char", ["[", "*", "?"]) | ||
def test_no_glob( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
consolidated all the tests here
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #17860 +/- ##
==========================================
+ Coverage 80.48% 80.56% +0.08%
==========================================
Files 1507 1495 -12
Lines 197610 197006 -604
Branches 2813 2813
==========================================
- Hits 159040 158720 -320
+ Misses 38049 37765 -284
Partials 521 521 ☔ View full report in Codecov by Sentry. |
Fixes #17822