Skip to content

Commit

Permalink
CONF: adding more deprecation warnings to ignore that are triggered u…
Browse files Browse the repository at this point in the history
…pstream
  • Loading branch information
bsipocz committed Nov 16, 2024
1 parent dc6bf2c commit 1b8a727
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,18 @@ force-sort-within-sections = true

[tool.pytest.ini_options]
filterwarnings = [
"error",
'error',
'ignore:unclosed database in:ResourceWarning',
# from asyncio triggered by jupyter_client
'ignore:There is no current event loop:DeprecationWarning',
'ignore:Parsing dates involving a day of month without a year specified is ambiguious:DeprecationWarning',
# from jupyter_core
'ignore:Jupyter is migrating its paths to use standard platformdirs:DeprecationWarning',
# nbclient
'ignore:Parsing dates involving a day of month without a year specified is ambiguious:DeprecationWarning:nbclient',
# From dateutil in sqlalchemy and jupyter_cache
'ignore:datetime.datetime.utcnow\(\) is deprecated:DeprecationWarning:sqlalchemy',
'ignore:datetime.datetime.utcnow\(\) is deprecated:DeprecationWarning:jupyter_cache',
]

markers = [
Expand Down

0 comments on commit 1b8a727

Please sign in to comment.