From 1dc93017202fb066fe9579ed373adc269c361e75 Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Sat, 6 May 2023 17:27:07 -0600 Subject: [PATCH] Silence ruff S603 It's tests and we deal with the error handling diferently. --- tests/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/utils.py b/tests/utils.py index 27ab49b..3e0aaa4 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -10,7 +10,7 @@ def run(*args, check=True): process = subprocess.run( - [sys.executable, "-m", *args], + [sys.executable, "-m", *args], # noqa: S603 stdout=subprocess.PIPE, stderr=subprocess.STDOUT, encoding="utf-8",