@@ -82,7 +82,7 @@ class ParallelTestChecker(BaseChecker, MapReduceMixin):
82
82
83
83
On non-parallel builds: it works on all the files in a single run.
84
84
85
- On parallel builds: lint.parallel calls ``open`` once per file.
85
+ On parallel builds: `` lint.parallel`` calls ``open`` once per file.
86
86
87
87
So if files are treated by separate processes, no messages will be
88
88
raised from the individual process, all messages will be raised
@@ -274,7 +274,7 @@ def test_sequential_checkers_work(self) -> None:
274
274
"""Tests original basic types of checker works as expected in -jN
275
275
276
276
This means that a sequential checker should return the same data for a given
277
- file-stream irrespective of whether its run in -j1 or -jN
277
+ file-stream irrespective of whether it's run in -j1 or -jN
278
278
"""
279
279
linter = PyLinter (reporter = Reporter ())
280
280
@@ -443,7 +443,7 @@ def test_compare_workers_to_single_proc(self, num_files, num_jobs, num_checkers)
443
443
444
444
file_infos = _gen_file_datas (num_files )
445
445
446
- # Loop for single-proc and mult-proc so we can ensure the same linter-config
446
+ # Loop for single-proc and mult-proc, so we can ensure the same linter-config
447
447
for do_single_proc in range (2 ):
448
448
linter = PyLinter (reporter = Reporter ())
449
449
@@ -515,7 +515,7 @@ def test_map_reduce(self, num_files, num_jobs, num_checkers):
515
515
# with the number of files.
516
516
file_infos = _gen_file_datas (num_files )
517
517
518
- # Loop for single-proc and mult-proc so we can ensure the same linter-config
518
+ # Loop for single-proc and mult-proc, so we can ensure the same linter-config
519
519
for do_single_proc in range (2 ):
520
520
linter = PyLinter (reporter = Reporter ())
521
521
0 commit comments