Files
pytest2/testing/example_scripts/fixtures/custom_item/conftest.py
2019-06-03 12:08:01 -03:00

11 lines
173 B
Python

import pytest
class CustomItem(pytest.Item, pytest.File):
def runtest(self):
pass
def pytest_collect_file(path, parent):
return CustomItem(path, parent)