From 76d79f0331f0a8157425433aca8abf27304a12dc Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Thu, 13 Jun 2019 14:15:08 -0700 Subject: [PATCH] Suppress part of an obnoxious warning about disabling coverage (for end-to-end tests). --- setup.cfg | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.cfg b/setup.cfg index c067a7b5..d0d0b160 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,6 +4,8 @@ description-file=README.md [tool:pytest] testpaths = tests addopts = --cov-report term-missing:skip-covered --cov=borgmatic --ignore=tests/end-to-end +filterwarnings = + ignore:Coverage disabled.*:pytest.PytestWarning [flake8] ignore = E501,W503