(benchmark, spec_text)
| 11 | |
| 12 | @pytest.mark.benchmark(group="packages") |
| 13 | def test_markdown_it_py(benchmark, spec_text): |
| 14 | import markdown_it |
| 15 | |
| 16 | parser = markdown_it.MarkdownIt("commonmark") |
| 17 | benchmark.extra_info["version"] = markdown_it.__version__ |
| 18 | benchmark(parser.render, spec_text) |
| 19 | |
| 20 | |
| 21 | @pytest.mark.benchmark(group="packages") |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…