(mark: Mark)
| 1901 | """Generate new tests based on parametrized fixtures used by the given metafunc""" |
| 1902 | |
| 1903 | def get_parametrize_mark_argnames(mark: Mark) -> Sequence[str]: |
| 1904 | args, _ = ParameterSet._parse_parametrize_args(*mark.args, **mark.kwargs) |
| 1905 | return args |
| 1906 | |
| 1907 | for argname in metafunc.fixturenames: |
| 1908 | # Get the FixtureDefs for the argname. |
nothing calls this directly
no test coverage detected