summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2020-05-01 13:58:59 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2020-05-01 15:03:11 +0200
commitecfd8b659257626dff266d2925e252ba84e23c3d (patch)
tree703b6359e813aa6124e230e26e963fade1a89573
parentc01d9eac830b8ca22ebc9587bce10a8fc4a92faa (diff)
downloadpylint-git-ecfd8b659257626dff266d2925e252ba84e23c3d.tar.gz
Disable existing fixme in tests so we can check the new one
-rw-r--r--tests/checkers/unittest_python3.py2
-rw-r--r--tests/unittest_pyreverse_diadefs.py6
2 files changed, 3 insertions, 5 deletions
diff --git a/tests/checkers/unittest_python3.py b/tests/checkers/unittest_python3.py
index 2ccd36c13..fdb5b26fd 100644
--- a/tests/checkers/unittest_python3.py
+++ b/tests/checkers/unittest_python3.py
@@ -31,7 +31,7 @@ from pylint import testutils
from pylint.checkers import python3 as checker
from pylint.interfaces import INFERENCE, INFERENCE_FAILURE
-# TODO(cpopa): Port these to the functional test framework instead.
+# TODO(cpopa): Port these to the functional test framework instead. pylint: disable=fixme
class TestPython3Checker(testutils.CheckerTestCase):
diff --git a/tests/unittest_pyreverse_diadefs.py b/tests/unittest_pyreverse_diadefs.py
index 276ac7402..302c5314e 100644
--- a/tests/unittest_pyreverse_diadefs.py
+++ b/tests/unittest_pyreverse_diadefs.py
@@ -12,9 +12,7 @@
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/master/COPYING
-"""
-unit test for the extensions.diadefslib modules
-"""
+"""Unit test for the extensions.diadefslib modules"""
# pylint: disable=redefined-outer-name
import sys
from pathlib import Path
@@ -90,7 +88,7 @@ def test_option_values(HANDLER, PROJECT):
def test_default_values():
"""test default values for package or class diagrams"""
- # TODO : should test difference between default values for package or class diagrams
+ # TODO : should test difference between default values for package or class diagrams pylint: disable=fixme
class TestDefaultDiadefGenerator: