-
Notifications
You must be signed in to change notification settings - Fork 653
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-#7064: Explicitly check for exceptions in test_groupby.py
#7065
Conversation
…upby.py' Signed-off-by: Anatoly Myachev <anatoly.myachev@intel.com>
modin/pandas/test/test_groupby.py
Outdated
@@ -2837,8 +2966,14 @@ def eval_rolling(md_window, pd_window): | |||
eval_general(md_window, pd_window, lambda window: window.std()) | |||
eval_general(md_window, pd_window, lambda window: window.min()) | |||
eval_general(md_window, pd_window, lambda window: window.max()) | |||
eval_general(md_window, pd_window, lambda window: window.corr()) | |||
eval_general(md_window, pd_window, lambda window: window.cov()) | |||
# FIXME: identify error |
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.
Do you plan to identify the error in this PR?
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.
yep, done
Signed-off-by: Anatoly Myachev <anatoly.myachev@intel.com>
HDK tests need to be restarted |
@@ -510,24 +526,85 @@ def maybe_get_columns(df, by): | |||
pandas_groupby, | |||
lambda df: df.nth(0).sort_values("col1").reset_index(drop=True), | |||
) | |||
|
|||
raising_exceptions = None | |||
if col1_category: |
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.
In all other cases there are no exceptions, right? I mean don't we hide the errors by setting raising_exceptions=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.
Should be the same answer like in #7067 (comment)
What do these changes do?
flake8 modin/ asv_bench/benchmarks scripts/doc_checker.py
black --check modin/ asv_bench/benchmarks scripts/doc_checker.py
git commit -s
test_groupby.py
#7064docs/development/architecture.rst
is up-to-date