@@ -133,7 +133,7 @@ def _prepare_cov_source(cov_source):
133
133
return None if True in cov_source else [path for path in cov_source if path is not True ]
134
134
135
135
136
- @pytest .mark . tryfirst
136
+ @pytest .hookimpl ( tryfirst = True )
137
137
def pytest_load_initial_conftests (early_config , parser , args ):
138
138
options = early_config .known_args_namespace
139
139
no_cov = options .no_cov_should_warn = False
@@ -253,23 +253,23 @@ def pytest_sessionstart(self, session):
253
253
if self .options .cov_context == 'test' :
254
254
session .config .pluginmanager .register (TestContextPlugin (self .cov_controller .cov ), '_cov_contexts' )
255
255
256
+ @pytest .hookimpl (optionalhook = True )
256
257
def pytest_configure_node (self , node ):
257
258
"""Delegate to our implementation.
258
259
259
260
Mark this hook as optional in case xdist is not installed.
260
261
"""
261
262
if not self ._disabled :
262
263
self .cov_controller .configure_node (node )
263
- pytest_configure_node .optionalhook = True
264
264
265
+ @pytest .hookimpl (optionalhook = True )
265
266
def pytest_testnodedown (self , node , error ):
266
267
"""Delegate to our implementation.
267
268
268
269
Mark this hook as optional in case xdist is not installed.
269
270
"""
270
271
if not self ._disabled :
271
272
self .cov_controller .testnodedown (node , error )
272
- pytest_testnodedown .optionalhook = True
273
273
274
274
def _should_report (self ):
275
275
return not (self .failed and self .options .no_cov_on_fail )
@@ -280,7 +280,7 @@ def _failed_cov_total(self):
280
280
281
281
# we need to wrap pytest_runtestloop. by the time pytest_sessionfinish
282
282
# runs, it's too late to set testsfailed
283
- @compat . hookwrapper
283
+ @pytest . hookimpl ( hookwrapper = True )
284
284
def pytest_runtestloop (self , session ):
285
285
yield
286
286
@@ -356,7 +356,7 @@ def pytest_runtest_setup(self, item):
356
356
def pytest_runtest_teardown (self , item ):
357
357
embed .cleanup ()
358
358
359
- @compat . hookwrapper
359
+ @pytest . hookimpl ( hookwrapper = True )
360
360
def pytest_runtest_call (self , item ):
361
361
if (item .get_closest_marker ('no_cover' )
362
362
or 'no_cover' in getattr (item , 'fixturenames' , ())):
0 commit comments