pytest.mark.parametrize(
"expression,output",
[
# ints shouldn't match floats:
("3.0", "3"),
("3e0", "3"),
("1e3", "1000"),
| 1 | import inspect |
| 2 | import textwrap |
| 3 | from pathlib import Path |
| 4 | from typing import Callable |
nothing calls this directly
no outgoing calls
no test coverage detected