You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And I run pylint (1.5.0 or current master) without -j, I get duplicate-code as expected:
$ pylint 1.py 2.py -rn --disable=all --enable=duplicate-code
No config file found, using default configuration
************* Module 2
R: 1, 0: Similar lines in 2 files
[...]
Adding -j0 hides the error:
$ pylint 1.py 2.py -rn --disable=all --enable=duplicate-code -j0
No config file found, using default configuration
-------------------------------------------------------------------
Your code has been rated at 10.00/10 (previous run: 9.17/10, +0.83)
I figured this out because I got the message on AppVeyor but not on Travis, so this might be a Linux-only issue?
The text was updated successfully, but these errors were encountered:
The-Compiler
added a commit
to qutebrowser/qutebrowser
that referenced
this issue
Jul 8, 2016
When I have two files like this:
And I run pylint (1.5.0 or current master) without
-j
, I getduplicate-code
as expected:Adding
-j0
hides the error:I figured this out because I got the message on AppVeyor but not on Travis, so this might be a Linux-only issue?
The text was updated successfully, but these errors were encountered: