Delete conftest

This commit is contained in:
Miical 2024-10-20 13:43:16 +08:00
parent 44851f1b35
commit 19f1f3798d
1 changed files with 0 additions and 14 deletions

View File

@ -1,14 +0,0 @@
import pytest
from mlvp.reporter import process_context, process_func_coverage
@pytest.hookimpl(trylast=True, optionalhook=True)
def pytest_reporter_context(context, config):
process_context(context, config)
@pytest.hookimpl(tryfirst=True, hookwrapper=True)
def pytest_runtest_makereport(item, call):
outcome = yield
report = outcome.get_result()
return process_func_coverage(item, call, report)