summaryrefslogtreecommitdiff
path: root/tests/profile
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2022-05-30 16:39:38 -0400
committerGitHub <noreply@github.com>2022-05-30 16:39:38 -0400
commitc29bba61a16dbffb807c5af91208dd6a116435e3 (patch)
tree57b483e59c02992398f5054d259637606bd4f9e4 /tests/profile
parentd3180eafff77fc6eb56d0418e997cd6e0f31ede8 (diff)
downloadpylint-git-c29bba61a16dbffb807c5af91208dd6a116435e3.tar.gz
Fail "new primer" runs on fatal errors, like the "old primer" (#6746)
Diffstat (limited to 'tests/profile')
-rw-r--r--tests/profile/test_profile_against_externals.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/profile/test_profile_against_externals.py b/tests/profile/test_profile_against_externals.py
index 33b25efbc..579a5bc9c 100644
--- a/tests/profile/test_profile_against_externals.py
+++ b/tests/profile/test_profile_against_externals.py
@@ -46,7 +46,7 @@ def test_run(tmp_path, name, git_repo):
filepaths = _get_py_files(scanpath=str(checkoutdir))
print(f"Have {len(filepaths)} files")
- runner = Run(filepaths, reporter=Reporter(), do_exit=False)
+ runner = Run(filepaths, reporter=Reporter(), exit=False)
print(
f"Had {len(filepaths)} files with {len(runner.linter.reporter.messages)} messages"