1
0
Fork 0
mirror of synced 2024-05-26 03:51:14 -04:00

Configure pytest to escalate warnings to errors during testing

This commit is contained in:
Kurt McKee 2023-09-10 10:28:14 -05:00
parent eba0b24331
commit 9bb82306f4
No known key found for this signature in database
GPG key ID: 64713C0B5BA8E1C2

View file

@ -10,3 +10,8 @@ exclude = '''
| lib
)/
'''
[tool.pytest.ini_options]
filterwarnings = [
"error",
]