Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
steps:
- id: choose
run: |
if [[ "${{ github.event.schedule }}" = "30 2 * * WED" ]]
if true
then
echo "python-version=3.10" >> "$GITHUB_OUTPUT"
elif [[ "${{ github.event.schedule }}" = "30 2 * * THU" ]]
Expand Down
3 changes: 1 addition & 2 deletions modin/tests/pandas/dataframe/test_udf.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,7 @@ def test_aggregate_error_checking():
with warns_that_defaulting_to_pandas():
modin_df.aggregate({modin_df.columns[0]: "sum", modin_df.columns[1]: "mean"})

with warns_that_defaulting_to_pandas():
modin_df.aggregate("cumproduct")
modin_df.aggregate("cumprod")


@pytest.mark.parametrize(
Expand Down
Loading