From 7546375fdf633aaa7c03a683838dbc7dee971643 Mon Sep 17 00:00:00 2001 From: Hassan Kibirige Date: Wed, 31 Jul 2024 16:29:00 +0300 Subject: [PATCH] TST: Update ruff lint command --- tests/test_lint_and_format.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_lint_and_format.py b/tests/test_lint_and_format.py index 537b4f16c..d899fb18f 100644 --- a/tests/test_lint_and_format.py +++ b/tests/test_lint_and_format.py @@ -14,7 +14,7 @@ def test_lint(): plotnine_dir = str(Path(__file__).parent.parent.absolute()) p = subprocess.Popen( - ["ruff", plotnine_dir], + ["ruff", "check", plotnine_dir], stdout=subprocess.PIPE, stderr=subprocess.PIPE, )