Spaces:
Sleeping
Sleeping
fix: update filterwarnings in pyproject.toml to ignore additional deprecation warnings
Browse files- 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"]
|