summaryrefslogtreecommitdiff
blob: a555ca53fc916c60dfc7db615a132a3bc49c674d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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