Skip to content

Commit

Permalink
Ignore dateutil deprecation warning in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
FasterSpeeding authored Dec 28, 2023
1 parent 19937b6 commit e087071
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,12 @@ asyncio_mode = "strict"
testpaths = ["tests"]
timeout = 15
required_plugins = ["pytest-asyncio", "pytest-timeout"]
filterwarnings = ["error"]
filterwarnings = [
"error",
# Remove after dateutil >2.8.2 release
# https://github.com/dateutil/dateutil/issues/1314
"ignore:datetime.datetime.utcfromtimestamp\(\) is deprecated:DeprecationWarning:dateutil.tz.tz:37"
]

[tool.slotscheck]
strict-imports = true
Expand Down

0 comments on commit e087071

Please sign in to comment.