diff options
author | Frank Harrison <frank@doublethefish.com> | 2020-03-28 09:37:12 +0000 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-03-06 16:23:07 +0100 |
commit | dc1f92d9bc81db9d1b05243a89227ac7399134fa (patch) | |
tree | f5d28da24d6673efc4b819915148f72c7b15c9a1 /tests/input | |
parent | d554704641efba34ce0d3c22a3f91acf06dd814f (diff) | |
download | pylint-git-dc1f92d9bc81db9d1b05243a89227ac7399134fa.tar.gz |
bug2674
Diffstat (limited to 'tests/input')
-rw-r--r-- | tests/input/no_absolute_import.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/input/no_absolute_import.py b/tests/input/no_absolute_import.py new file mode 100644 index 000000000..69059417f --- /dev/null +++ b/tests/input/no_absolute_import.py @@ -0,0 +1,5 @@ +""" Puts issue #2672 under test (-j 1 vs -j N) + +Here we use a simple file to ensure configs are treated exactly the same way in -j 1 and +-j N """ +import os # pylint: disable=unused-import |