Skip to content

Commit fd4c1e9

Browse files
authored
1 parent cb1685e commit fd4c1e9

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

pytest_ruff/__init__.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,14 @@ def collect(self):
8686

8787
def check_file(path):
8888
ruff = find_ruff_bin()
89-
command = [ruff, "check", path, "--quiet", "--show-source", "--force-exclude"]
89+
command = [
90+
ruff,
91+
"check",
92+
path,
93+
"--quiet",
94+
"--output-format=full",
95+
"--force-exclude",
96+
]
9097
child = Popen(command, stdout=PIPE, stderr=PIPE)
9198
stdout, _ = child.communicate()
9299
if stdout:

0 commit comments

Comments
 (0)