Rthur2003 commited on
Commit
f37f03d
·
1 Parent(s): d498226

fix: update filterwarnings in pyproject.toml to ignore additional deprecation warnings

Browse files
Files changed (1) hide show
  1. pyproject.toml +5 -0
pyproject.toml CHANGED
@@ -80,6 +80,11 @@ testpaths = [
80
  ]
81
  python_files = "test_*.py"
82
  python_functions = "test_*"
 
 
 
 
 
83
 
84
  [tool.coverage.run]
85
  source = ["app"]
 
80
  ]
81
  python_files = "test_*.py"
82
  python_functions = "test_*"
83
+ filterwarnings = [
84
+ "ignore::FutureWarning:google",
85
+ "ignore::DeprecationWarning:httpx",
86
+ "ignore::PendingDeprecationWarning:starlette",
87
+ ]
88
 
89
  [tool.coverage.run]
90
  source = ["app"]