-
-
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
test: Name tests so they actually run #17690
Conversation
def is_not_sorted(s: pl.Series) -> bool: | ||
return not is_sorted_any(s) |
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.
another drive-by: removing this unused function 👻
def index_not_silently_excluded() -> None: | ||
def test_index_not_silently_excluded() -> None: |
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.
@tylerriccio33 just fyi, if you name the test index_not_silently_excluded
then pytest won't execute it
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #17690 +/- ##
==========================================
- Coverage 80.45% 80.45% -0.01%
==========================================
Files 1498 1498
Lines 196456 196454 -2
Branches 2789 2789
==========================================
- Hits 158060 158054 -6
- Misses 37883 37888 +5
+ Partials 513 512 -1 ☔ View full report in Codecov by Sentry. |
Looks like there's a repeat of #6316 😛
Drive-by: use
MutablePlString
instead ofMutableBinaryViewArray::<str>