(cls)
| 609 | |
| 610 | |
| 611 | def _setup_engine(cls): |
| 612 | if getattr(cls, "__engine_options__", None): |
| 613 | opts = dict(cls.__engine_options__) |
| 614 | opts["scope"] = "class" |
| 615 | eng = engines.testing_engine(options=opts) |
| 616 | config._current.push_engine(eng, testing) |
| 617 | |
| 618 | |
| 619 | def before_test(test, test_module_name, test_class, test_name): |
no test coverage detected