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 bd1a2e6 commit 992e7f7Copy full SHA for 992e7f7
src/_pytest/terminal.py
@@ -453,10 +453,10 @@ def pytest_runtest_logfinish(self, nodeid):
453
progress_length = len(" [100%]")
454
455
self._progress_nodeids_reported.add(nodeid)
456
- last_item = (
+ is_last_item = (
457
len(self._progress_nodeids_reported) == self._session.testscollected
458
)
459
- if last_item:
+ if is_last_item:
460
self._write_progress_information_filling_space()
461
else:
462
w = self._width_of_current_line
0 commit comments