diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2020-11-14 16:03:54 +0100 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2020-11-28 16:09:53 +0100 |
commit | ebd35f03c7b8f7d76b83835df5e9cea287b941b1 (patch) | |
tree | 154a921e7706e033c831fcdb83085de555380bed /tests/profile | |
parent | e83e7792e5a90d13e9fc5f2c003f45f0e80ff5dd (diff) | |
download | pylint-git-ebd35f03c7b8f7d76b83835df5e9cea287b941b1.tar.gz |
Fix PytestCollectionWarning: cannot collect test class TestReporter
Diffstat (limited to 'tests/profile')
-rw-r--r-- | tests/profile/test_profile_against_externals.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/profile/test_profile_against_externals.py b/tests/profile/test_profile_against_externals.py index e7159264b..4bbac7556 100644 --- a/tests/profile/test_profile_against_externals.py +++ b/tests/profile/test_profile_against_externals.py @@ -8,13 +8,11 @@ import os import pprint -import shutil -import tempfile import pytest from pylint.lint import Run -from pylint.testutils import TestReporter as Reporter +from pylint.testutils import GenericTestReporter as Reporter def _get_py_files(scanpath): |