mirror of
1
0
Fork 0

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
1 changed files with 5 additions and 0 deletions

View File

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