From d14a8df71aae0a282708127dd1be1279154b5dac Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Fri, 24 Mar 2023 22:43:10 -0700 Subject: [PATCH] Hide obnoxious ruamel.yaml warnings during test runs. --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index d8d28f89..67b989dc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -5,7 +5,7 @@ description_file=README.md testpaths = tests addopts = --cov-report term-missing:skip-covered --cov=borgmatic --ignore=tests/end-to-end filterwarnings = - ignore:Coverage disabled.*:pytest.PytestWarning + ignore:Deprecated call to `pkg_resources.declare_namespace\('ruamel'\)`.*:DeprecationWarning [flake8] ignore = E501,W503