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

Update RemovedIn20Warning filtering #9814

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions dask/dataframe/io/tests/test_sql.py
Expand Up @@ -41,6 +41,7 @@ def db():
yield uri


@pytest.mark.filterwarnings("ignore:.*:dask.tests.warning_aliases.RemovedIn20Warning")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
@pytest.mark.filterwarnings("ignore:.*:dask.tests.warning_aliases.RemovedIn20Warning")
@pytest.mark.filterwarnings("ignore:.*:sqlalchemy.ext.RemovedIn20Warning")

def test_empty(db):
from sqlalchemy import Column, Integer, MetaData, Table, create_engine

Expand Down
1 change: 0 additions & 1 deletion setup.cfg
Expand Up @@ -74,7 +74,6 @@ filterwarnings =
# Ignore FutureWarning for change in group_keys behavior: no changes required on the dask side.
# https://pandas.pydata.org/docs/dev/whatsnew/v1.5.0.html#using-group-keys-with-transformers-in-groupby-apply
ignore:Not prepending group keys:FutureWarning
ignore:.*:dask.tests.warning_aliases.RemovedIn20Warning
xfail_strict=true

[metadata]
Expand Down