Description
Running pylint -jobs=0
does not report about cyclic-import. This can be reproduced with a trivial example.
a.py
:
import b
b.py
:
import a
This issue is not new to pylint 2.7. It is more noticeable only because running jobs in parallel became more useful in this version.
pylint --version
pylint 2.7.1
astroid 2.5
Python 3.8.6 (default, Sep 25 2020, 09:36:53)
[GCC 10.2.0]