(self, items)
| 94 | # link to pytest_collection_modifyitems |
| 95 | # https://docs.pytest.org/en/6.2.x/writing_plugins.html#hook-function-validation-and-execution |
| 96 | def pytest_collection_modifyitems(self, items): |
| 97 | for item in items: |
| 98 | self.tests_collected.add(item.nodeid) |
| 99 | |
| 100 | # link to pytest_runtest_logreport |
| 101 | # https://docs.pytest.org/en/6.2.x/_modules/_pytest/hookspec.html#pytest_runtest_logreport |