From 1798c4aeca70ac8d0a243684d6a798fbc65735f8 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 14 Jul 2018 20:57:42 +0100 Subject: gentoo resync : 14.07.2018 --- .../pytest-cov/files/fix-for-deprecation-warnings.patch | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 dev-python/pytest-cov/files/fix-for-deprecation-warnings.patch (limited to 'dev-python/pytest-cov/files') 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 - -- cgit v1.2.3