From eb2389610b42dc1b89001cdb48dfcc73426041b5 Mon Sep 17 00:00:00 2001 From: Caroline Malin-Mayor Date: Wed, 14 Feb 2024 10:49:04 -0500 Subject: [PATCH] Ignore deprecation warnings --- pyproject.toml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ae31e029d..6e2897b86 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -66,9 +66,6 @@ dev = [ "ipython", "mypy", "pdbpp", - "pre-commit", - "pytest-cov", - "pytest", "rich", "ruff", ] @@ -117,7 +114,9 @@ select = [ [tool.pytest.ini_options] minversion = "6.0" testpaths = ["tests"] -filterwarnings = ["error"] +filterwarnings = ["error", +"ignore::DeprecationWarning"] + # https://mypy.readthedocs.io/en/stable/config_file.html [tool.mypy]