LazyLibrarian/pyproject.toml
2022-12-01 00:55:00 +00:00

10 lines
303 B
TOML

# Config file for pytest
[tool.pytest.ini_options]
pythonpath = "."
filterwarnings = [
# Ignore warning about CGI being deprecated in cherrypy
'''ignore:'cgi' is deprecated''',
# Ignore numerous warnings from cherrypy
"ignore::DeprecationWarning: invalid escape sequence"
]