]> granicus.if.org Git - graphviz/commitdiff
squash wrong-import-order Pylint warnings for run_c
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 24 Apr 2021 17:14:42 +0000 (10:14 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 1 May 2021 00:35:16 +0000 (17:35 -0700)
rtest/test_examples.py
rtest/test_regression.py
rtest/test_vmalloc.py

index 369c7249b60be79640c4b2fd3726706d89f737f7..36ac50296c26ffd25c827632fd4cdf754f921d74 100644 (file)
@@ -9,7 +9,7 @@ import sys
 import pytest
 
 sys.path.append(os.path.dirname(__file__))
-from gvtest import run_c
+from gvtest import run_c #pylint: disable=C0413
 
 @pytest.mark.parametrize("src", ["demo.c", "dot.c", "example.c", "neatopack.c",
   "simple.c"])
index eda75c8df34e9d0f707d31cc24777bfff1de48ec..0a190cd3d1299aca5a559c44f350b62c91eee745 100644 (file)
@@ -11,7 +11,7 @@ import tempfile
 import pytest
 
 sys.path.append(os.path.dirname(__file__))
-from gvtest import run_c
+from gvtest import run_c #pylint: disable=C0413
 
 # The terminology used in rtest.py is a little inconsistent. At the
 # end it reports the total number of tests, the number of "failures"
index 2c3271c1b0edbe4e742eeb7f2cd57def9fce0892..347bbf5682377517211c279268446ee7297a3b5a 100644 (file)
@@ -6,7 +6,7 @@ import platform
 import sys
 
 sys.path.append(os.path.dirname(__file__))
-from gvtest import run_c
+from gvtest import run_c #pylint: disable=C0413
 
 def test_vmalloc():
   """run the vmalloc unit tests"""