(seconds, expected)
| 2727 | ], |
| 2728 | ) |
| 2729 | def test_format_session_duration(seconds, expected): |
| 2730 | from _pytest.terminal import format_session_duration |
| 2731 | |
| 2732 | assert format_session_duration(seconds) == expected |
| 2733 | |
| 2734 | |
| 2735 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected