Ensure `TestHTMLBlocks` doesn't get run twice by excluding it here.
(loader, tests, pattern)
| 1558 | |
| 1559 | |
| 1560 | def load_tests(loader, tests, pattern): |
| 1561 | """ Ensure `TestHTMLBlocks` doesn't get run twice by excluding it here. """ |
| 1562 | suite = TestSuite() |
| 1563 | for test_class in [TestDefaultwMdInHTML, TestMdInHTML, TestMarkdownInHTMLPostProcessor]: |
| 1564 | tests = loader.loadTestsFromTestCase(test_class) |
| 1565 | suite.addTests(tests) |
| 1566 | return suite |
nothing calls this directly
no outgoing calls
no test coverage detected