[New-bugs-announce] [issue29691] Some tests fail in coverage Travis check
Jelle Zijlstra
report at bugs.python.org
Thu Mar 2 03:42:36 EST 2017
New submission from Jelle Zijlstra:
A few tests fail in the coverage Travis target (see e.g. https://travis-ci.org/python/cpython/jobs/206480468): test_traceback and test_xml_etree.
I extracted the actual failures by running in verbose mode locally:
======================================================================
FAIL: test_recursive_traceback_cpython_internal (test.test_traceback.TracebackFormatTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/jelle/cpython-dev/cpython-1/Lib/test/test_traceback.py", line 431, in test_recursive_traceback_cpython_internal
self._check_recursive_traceback_display(render_exc)
File "/home/jelle/cpython-dev/cpython-1/Lib/test/test_traceback.py", line 347, in _check_recursive_traceback_display
self.assertEqual(actual[-1], expected[-1])
AssertionError: 'RecursionError: maximum recursion depth exceeded in comparison' != 'RecursionError: maximum recursion depth exceeded'
- RecursionError: maximum recursion depth exceeded in comparison
? --------------
+ RecursionError: maximum recursion depth exceeded
======================================================================
FAIL: test_recursive_traceback_python (test.test_traceback.TracebackFormatTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/jelle/cpython-dev/cpython-1/Lib/test/test_traceback.py", line 423, in test_recursive_traceback_python
self._check_recursive_traceback_display(traceback.print_exc)
File "/home/jelle/cpython-dev/cpython-1/Lib/test/test_traceback.py", line 347, in _check_recursive_traceback_display
self.assertEqual(actual[-1], expected[-1])
AssertionError: 'RecursionError: maximum recursion depth exceeded in comparison' != 'RecursionError: maximum recursion depth exceeded'
- RecursionError: maximum recursion depth exceeded in comparison
? --------------
+ RecursionError: maximum recursion depth exceeded
======================================================================
FAIL: test_bug_xmltoolkit63 (test.test_xml_etree.BugsTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/jelle/cpython-dev/cpython-1/Lib/test/test_xml_etree.py", line 1538, in test_bug_xmltoolkit63
self.assertEqual(sys.getrefcount(None), count)
AssertionError: 505087 != 505084
Fixing this will improve the coverage check on PRs.
----------
components: Tests
messages: 288786
nosy: Jelle Zijlstra, eli.bendersky, ezio.melotti, michael.foord, scoder
priority: normal
severity: normal
status: open
title: Some tests fail in coverage Travis check
versions: Python 3.7
_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue29691>
_______________________________________
More information about the New-bugs-announce
mailing list