Use pytest_runtest_logreport instead of pytest_runtest_makereport
In reference to the issue: #331 (closed)
- Use
pytest_runtest_logreport
instead ofpytest_runtest_makereport
to report test outcomes using theTestReport
object - Use
pytest_runtest_logreport
to report test durations and remove thecapture_validation_time
fixture - Use
pytest_report_header
instead ofpytest_sessionstart
to printCTEST_FULL_OUTPUT
in the header - Remove duplicated
run_exception
reporting (it was reported both asrun_exception
andfailure
)