We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbd80ef commit c3fcc9aCopy full SHA for c3fcc9a
src/_pytest/terminal.py
@@ -468,6 +468,9 @@ def pytest_runtest_logfinish(self, nodeid):
468
469
is_last_item = self._numreported == self._session.testscollected
470
if is_last_item:
471
+ if hasattr(self, "_last_item_reported"):
472
+ assert 0, self._last_item_reported
473
+ self._last_item_reported = nodeid
474
self._write_progress_information_filling_space(color=main_color)
475
else:
476
w = self._width_of_current_line
0 commit comments