summaryrefslogtreecommitdiff
path: root/dev-python/pytest-cov/files/fix-for-deprecation-warnings.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-04-12 03:41:30 +0100
committerV3n3RiX <venerix@redcorelinux.org>2020-04-12 03:41:30 +0100
commit623ee73d661e5ed8475cb264511f683407d87365 (patch)
tree993eb27c93ec7a2d2d19550300d888fc1fed9e69 /dev-python/pytest-cov/files/fix-for-deprecation-warnings.patch
parentceeeb463cc1eef97fd62eaee8bf2196ba04bc384 (diff)
gentoo Easter resync : 12.04.2020
Diffstat (limited to 'dev-python/pytest-cov/files/fix-for-deprecation-warnings.patch')
-rw-r--r--dev-python/pytest-cov/files/fix-for-deprecation-warnings.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/dev-python/pytest-cov/files/fix-for-deprecation-warnings.patch b/dev-python/pytest-cov/files/fix-for-deprecation-warnings.patch
deleted file mode 100644
index a555ca53fc91..000000000000
--- a/dev-python/pytest-cov/files/fix-for-deprecation-warnings.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff --git a/tests/test_pytest_cov.py b/tests/test_pytest_cov.py
-index 6cbf341..614e53c 100644
---- a/tests/test_pytest_cov.py
-+++ b/tests/test_pytest_cov.py
-@@ -337,7 +337,10 @@ def test_central_nonspecific(testdir):
- ])
-
- # multi-module coverage report
-- assert any(line.startswith('TOTAL ') for line in result.stdout.lines[-4:])
-+ # Fix test failure due to pytest deprecation warnings being
-+ # added to the expected output. Look in entire output lines instead.
-+ # assert any(line.startswith('TOTAL ') for line in result.stdout.lines[-4:])
-+ assert any(line.startswith('TOTAL ') for line in result.stdout.lines[-10:])
-
- assert result.ret == 0
-