Skip to content
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

[REVIEW] Enable codecov github-check in CI #10404

Merged
merged 8 commits into from
Mar 10, 2022
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@
coverage:
status:
project: off
patch: off
patch: on

github_checks:
annotations: true
8 changes: 8 additions & 0 deletions python/cudf/cudf/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
from cudf.core.buffer import Buffer
from cudf.utils.dtypes import to_cudf_compatible_scalar

# dummy commit


galipremsagar marked this conversation as resolved.
Show resolved Hide resolved
# The size of the mask in bytes
mask_dtype = cudf.dtype(np.int32)
mask_bitsize = mask_dtype.itemsize * 8
Expand Down Expand Up @@ -250,6 +253,11 @@ def pa_mask_buffer_to_mask(mask_buf, size):
return Buffer(mask_buf)


def my_dummy_func():
print("unreachable code")
print("try")


galipremsagar marked this conversation as resolved.
Show resolved Hide resolved
def _isnat(val):
"""Wraps np.isnat to return False instead of error on invalid inputs."""
if not isinstance(val, (np.datetime64, np.timedelta64, str)):
Expand Down