We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 420f2ae commit c5b23cdCopy full SHA for c5b23cd
pylint/testutils/_primer/primer_run_command.py
@@ -42,7 +42,7 @@ def run(self) -> None:
42
local_commit = Repo(data.clone_directory).head.object.hexsha
43
packages[package] = PackageData(commit=local_commit, messages=messages)
44
path = self.primer_directory / (
45
- f"output_{'.'.join(str(i) for i in sys.version_info[:3])}_{self.config.type}"
+ f"output_{'.'.join(str(i) for i in sys.version_info[:2])}_{self.config.type}"
46
+ (f"_batch{self.config.batchIdx}.txt" if self.config.batches else "")
47
)
48
print(f"Writing result in {path}")
0 commit comments