You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug, including details regarding any error messages, version, and platform.
When we run the tests we get a lot of:
Warning message:
Returning more (or less) than 1 row per `summarise()` group was deprecated in dplyr 1.1.0.
ℹ Please use `reframe()` instead.
ℹ When switching from `summarise()` to `reframe()`, remember that `reframe()` always returns an
ungrouped data frame and adjust accordingly.
Call `lifecycle::last_lifecycle_warnings()` to see where this warning was generated.
These warnings aren't because we are calling dplyr, but because the tests use example data that results in this warning. These warnings are confusing when running the tests and makes real warnings harder to spot!
Component(s)
R
The text was updated successfully, but these errors were encountered:
### Rationale for this change
Running our test suite results in many spurious warnings being printed that make it difficult to spot actual warnings.
### What changes are included in this PR?
The data used for specific tests involving `summarise()` was updated to not trigger the warnings.
### Are these changes tested?
Yes
### Are there any user-facing changes?
No
* Closes: #39076
Authored-by: Dewey Dunnington <dewey@voltrondata.com>
Signed-off-by: Dewey Dunnington <dewey@fishandwhistle.net>
### Rationale for this change
Running our test suite results in many spurious warnings being printed that make it difficult to spot actual warnings.
### What changes are included in this PR?
The data used for specific tests involving `summarise()` was updated to not trigger the warnings.
### Are these changes tested?
Yes
### Are there any user-facing changes?
No
* Closes: #39076
Authored-by: Dewey Dunnington <dewey@voltrondata.com>
Signed-off-by: Dewey Dunnington <dewey@fishandwhistle.net>
dgreiss
pushed a commit
to dgreiss/arrow
that referenced
this issue
Feb 19, 2024
…pache#39077)
### Rationale for this change
Running our test suite results in many spurious warnings being printed that make it difficult to spot actual warnings.
### What changes are included in this PR?
The data used for specific tests involving `summarise()` was updated to not trigger the warnings.
### Are these changes tested?
Yes
### Are there any user-facing changes?
No
* Closes: apache#39076
Authored-by: Dewey Dunnington <dewey@voltrondata.com>
Signed-off-by: Dewey Dunnington <dewey@fishandwhistle.net>
Describe the bug, including details regarding any error messages, version, and platform.
When we run the tests we get a lot of:
These warnings aren't because we are calling dplyr, but because the tests use example data that results in this warning. These warnings are confusing when running the tests and makes real warnings harder to spot!
Component(s)
R
The text was updated successfully, but these errors were encountered: