From bf7f4898b3622184ada558cc008135df84b79847 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Wed, 15 Jan 2025 22:01:30 +0100 Subject: [PATCH] Apply ruff/flake8-pytest-style rule PT023 PT023 Use `@pytest.mark.skip_commit` over `@pytest.mark.skip_commit()` --- testing/test_file_finder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/test_file_finder.py b/testing/test_file_finder.py index 5af94fcf..cc1a08fd 100644 --- a/testing/test_file_finder.py +++ b/testing/test_file_finder.py @@ -212,7 +212,7 @@ def test_symlink_not_in_scm_while_target_is(inwd: WorkDir) -> None: @pytest.mark.issue(587) -@pytest.mark.skip_commit() +@pytest.mark.skip_commit def test_not_commited(inwd: WorkDir) -> None: assert find_files() == []