Ignore IO errors on Windows

Co-authored-by: Jonathan Wren <jonathan@nowandwren.com>
This commit is contained in:
Micah Jerome Ellison 2021-04-10 12:19:49 -07:00 committed by Jonathan Wren
parent b8c7a7c7e5
commit 3b044e3044

View file

@ -69,6 +69,12 @@ markers = [
"todo", "todo",
] ]
filterwarnings = [
"ignore::DeprecationWarning",
"ignore:Flag style will be deprecated in.*",
"ignore:[WinError 32].*",
"ignore:[WinError 5].*"
]
[build-system] [build-system]
requires = ["poetry>=1.1"] requires = ["poetry>=1.1"]