diff options
| author | Frank Harrison <frank@doublethefish.com> | 2020-08-06 10:33:31 +0100 |
|---|---|---|
| committer | Bryce Guinta <bryce.guinta@protonmail.com> | 2020-10-19 12:26:17 -0700 |
| commit | 52c081b29c71d2e4df3c5e28af373f52e734e510 (patch) | |
| tree | 0479a4417c3d389418864a507485883ce27a1365 /tests/test_check_parallel.py | |
| parent | 4bdb786e1dbd7ffb84728d16e249edbdb54dc94d (diff) | |
| download | pylint-git-52c081b29c71d2e4df3c5e28af373f52e734e510.tar.gz | |
review fixes| Remvoes debug print in test
Diffstat (limited to 'tests/test_check_parallel.py')
| -rw-r--r-- | tests/test_check_parallel.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/test_check_parallel.py b/tests/test_check_parallel.py index 7c50a2a5c..2f862edb0 100644 --- a/tests/test_check_parallel.py +++ b/tests/test_check_parallel.py @@ -313,17 +313,6 @@ class TestCheckParallel: This test becomes mre important if we want to change how we paraterise the checkers, for example if we aim to batch the files across jobs. """ - print( - ( - "{buff} {num_files} files, {num_jobs} jobs, {num_checkers} checkers " - "{buff}" - ).format( - buff="_" * 4, - num_files=num_files, - num_jobs=num_jobs, - num_checkers=num_checkers, - ) - ) # define the stats we expect to get back from the runs, these should only vary # with the number of files. @@ -367,7 +356,6 @@ class TestCheckParallel: if do_single_proc: # establish the baseline - print("single proc, via linter._check_files") assert ( linter.config.jobs == 1 ), "jobs>1 are ignored when calling _check_files" @@ -375,7 +363,6 @@ class TestCheckParallel: assert linter.msg_status == 0, "We should not fail the lint" stats_single_proc = linter.stats else: - print("check_parallel") check_parallel( linter, jobs=num_jobs, files=file_infos, arguments=None, ) |
