ci: set no cover for test function

This commit is contained in:
Glyphack 2024-06-20 15:45:38 +02:00
parent 7a1b23d691
commit 91249e0d86
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ def test_get_real_func() -> None:
# obtain the function up until the point a function was wrapped by pytest itself
@pytest.fixture
def wrapped_func3():
pass
pass # pragma: no cover
wrapped_func4 = decorator(wrapped_func3)
assert get_real_func(wrapped_func4) is wrapped_func3._get_wrapped_function()