summaryrefslogtreecommitdiff
path: root/tests/test_pylint_runners.py
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2023-02-26 23:21:26 +0100
committerGitHub <noreply@github.com>2023-02-26 23:21:26 +0100
commit641f526e1632dd1835b79abaf31006efc60824f6 (patch)
tree9c21e0e56725aa6a823d7a692e8103766bbf64a1 /tests/test_pylint_runners.py
parente7ad3e64d36e450a9133c64e804c921d0fd0f204 (diff)
downloadpylint-git-641f526e1632dd1835b79abaf31006efc60824f6.tar.gz
[test] Use an empty pylintrc so tests to not depend on system's conf (#8350)
* [test] Use an empty pylintrc so tests to not depend on system's conf Closes #8342 * Update tests/checkers/unittest_imports.py Co-authored-by: Daniël van Noord <13665637+DanielNoord@users.noreply.github.com> --------- Co-authored-by: Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
Diffstat (limited to 'tests/test_pylint_runners.py')
-rw-r--r--tests/test_pylint_runners.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_pylint_runners.py b/tests/test_pylint_runners.py
index 06a16c3a5..6a55db9eb 100644
--- a/tests/test_pylint_runners.py
+++ b/tests/test_pylint_runners.py
@@ -18,8 +18,8 @@ from unittest.mock import MagicMock, mock_open, patch
import pytest
from pylint import run_epylint, run_pylint, run_pyreverse, run_symilar
-from pylint.lint import Run
from pylint.testutils import GenericTestReporter as Reporter
+from pylint.testutils._run import _Run as Run
from pylint.testutils.utils import _test_cwd
if sys.version_info >= (3, 8):