Example #1
0
 def stopContext(self, ctx):
     if not isinstance(ctx, type) or not issubclass(ctx, fixtures.TestBase):
         return
     plugin_base.stop_test_class(ctx)
 def stopContext(self, ctx):
     if not isinstance(ctx, type) \
             or not issubclass(ctx, fixtures.TestBase):
         return
     plugin_base.stop_test_class(ctx)
def class_teardown(item):
    plugin_base.stop_test_class(item.cls)
Example #4
0
def class_teardown(item):
    plugin_base.stop_test_class(item.cls)