From: Matthew Fernandez Date: Sat, 3 Jul 2021 02:39:14 +0000 (-0700) Subject: disable Pylint’s line-too-long warning for reference test list X-Git-Tag: 2.48.0~9^2~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0632d6ffa3e13d3681f4d64d45a10baee660a55e;p=graphviz disable Pylint’s line-too-long warning for reference test list IMHO this list is more readable as it is, unwrapped. --- diff --git a/tests/reference/test_reference.py b/tests/reference/test_reference.py index 860e37765..909a3f4cc 100644 --- a/tests/reference/test_reference.py +++ b/tests/reference/test_reference.py @@ -5,6 +5,7 @@ import sys import tempfile import pytest +# pylint: disable=line-too-long @pytest.mark.xfail @pytest.mark.parametrize('src,format,reference', ( ('graph G {a [label="" shape=none]}', 'gv', '001.001.gv'),