* Rename pytest_ignore_collect fspath parameter to collection_path * Rename pytest_collect_file fspath parameter to file_path * Rename pytest_pycollect_makemodule fspath parameter to module_path * Rename pytest_report_header startpath parameter to start_path * Rename pytest_report_collectionfinish startpath parameter to start_path * Update docs with the renamed parameters * Use pytest-flakes fork temporarily to prove it works * Use pytest-flakes 4.0.5
15 lines
274 B
Python
15 lines
274 B
Python
import pytest
|
|
|
|
|
|
class MyFile(pytest.File):
|
|
def collect(self):
|
|
return [MyItem.from_parent(name="hello", parent=self)]
|
|
|
|
|
|
def pytest_collect_file(file_path, parent):
|
|
return MyFile.from_parent(path=file_path, parent=parent)
|
|
|
|
|
|
class MyItem(pytest.Item):
|
|
pass
|