(self, tmp_path)
| 2215 | assert [r["seen"]["id"] for r in results] == [f"x{i}" for i in range(6)] |
| 2216 | |
| 2217 | def test_empty_items(self, tmp_path): |
| 2218 | results, _ = self._run(tmp_path, [], 4) |
| 2219 | assert results == [] |
| 2220 | |
| 2221 | def test_concurrent_halt_status_not_clobbered_by_later_item(self, tmp_path): |
| 2222 | # Item 1 PAUSES (first halting item in order); item 3 FAILS while in |