From 376172113a7ade44c9056de2dc43059d09ab343a Mon Sep 17 00:00:00 2001 From: Eliah Kagan Date: Sun, 31 Mar 2024 18:07:32 -0400 Subject: [PATCH] Don't pass --disable-warnings to pytest --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6cb05f96e..70862b23c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["setuptools"] build-backend = "setuptools.build_meta" [tool.pytest.ini_options] -addopts = "--cov=git --cov-report=term --disable-warnings -ra" +addopts = "--cov=git --cov-report=term -ra" filterwarnings = "ignore::DeprecationWarning" python_files = "test_*.py" tmp_path_retention_policy = "failed"