Open IndexSeek opened 4 days ago
Attention: Patch coverage is 92.30769%
with 1 line
in your changes missing coverage. Please review.
Project coverage is 90.35%. Comparing base (
c32d604
) to head (ee4ac23
).
Files with missing lines | Patch % | Lines |
---|---|---|
ibis_ml/utils/_pprint.py | 0.00% | 1 Missing :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Thanks! I'll try and review tomorrow or day after.
Thanks! I'll try and review tomorrow or day after.
Thank you! There may be some of have been some conflicting with each other from what I found. For example, I was getting violations saying that the # noqa: SLF001
was going unused, then after removing, was getting violations running pre-commit that there were SLF001 violations.
I think these cases are squared away now.
$ ruff check
All checks passed!
$ pre-commit run --all-files
prettier.................................................................Passed
ruff.....................................................................Passed
ruff-format..............................................................Passed
Sort __all__ records.....................................................Passed
Actually, can you bump the Ruff version in .pre-commit-config.yaml
? Because Ruff is running in CI, but it's not catching some of these things I assume because of the old version?
I'm still getting one violation after this, not sure how to get rid of this one. I might do a bit more digging later on, if this is something we will want to do. Adding
# noqa: E501
wasn't resolving it.examples/Using IbisML and DuckDB for a Kaggle competition.ipynb:cell 22:7:89: E501 Line too long (99 > 88) | 5 | Args: 6 | file_path (str): Path to the file or regex pattern to match files. 7 | depth (int, optional): Depth of processing. If 1 or 2, additional aggregation is performed. | ^^^^^^^^^^^ E501 8 | is_regex (bool, optional): Whether the file_path is a regex pattern. | Found 1 error.
We can just wrap this after "is". :)
I'm still getting one violation after this, not sure how to get rid of this one. I might do a bit more digging later on, if this is something we will want to do. Adding
# noqa: E501
wasn't resolving it.examples/Using IbisML and DuckDB for a Kaggle competition.ipynb:cell 22:7:89: E501 Line too long (99 > 88) | 5 | Args: 6 | file_path (str): Path to the file or regex pattern to match files. 7 | depth (int, optional): Depth of processing. If 1 or 2, additional aggregation is performed. | ^^^^^^^^^^^ E501 8 | is_regex (bool, optional): Whether the file_path is a regex pattern. | Found 1 error.
We can just wrap this after "is". :)
🤦 - I should have thought of this! Thank you!
I was looking through the repo and wanted to clear up the remaining outstanding ruff check violations.
Many of these are minor, and I was able to clear them by adjusting the following:
Here are the totals before the run:
I'm still getting one violation after this, not sure how to get rid of this one. I might do a bit more digging later on, if this is something we will want to do. Adding
# noqa: E501
wasn't resolving it.