Lines Matching refs:item
349 def pytest_itemcollected(item): argument
362 tests_not_run.append(item.name)
411 def setup_boardspec(item): argument
425 mark = item.get_marker('boardspec')
439 def setup_buildconfigspec(item): argument
453 mark = item.get_marker('buildconfigspec')
460 def start_test_section(item): argument
461 anchors[item.name] = log.start_section(item.name)
463 def pytest_runtest_setup(item): argument
476 start_test_section(item)
477 setup_boardspec(item)
478 setup_buildconfigspec(item)
480 def pytest_runtest_protocol(item, nextitem): argument
494 reports = runtestprotocol(item, nextitem=nextitem)
501 if not item.name in anchors:
502 start_test_section(item)
534 test_list.append(item.name)
535 tests_not_run.remove(item.name)
552 log.end_section(item.name)