We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a567d9 commit 4b2309eCopy full SHA for 4b2309e
tests/tests.py
@@ -10,7 +10,7 @@
10
import pytest
11
from chile_rut.main import Rut, RutDigitoVerificador, RutBase, RutInvalidoError
12
13
-
+# pylint: disable=R0904
14
class TestRutDigitoVerificador:
15
"""
16
Test suite for the RutDigitoVerificador class.
@@ -310,6 +310,7 @@ def test_validate_list_of_valid_rut_strings(self):
310
result = Rut.validar_lista_ruts(ruts)
311
assert result['validos'] == ["12345678-5", "98765432-5", "11111111-1"]
312
313
+ # pylint: disable=C0301
314
def test_validate_list_of_ruts(self):
315
316
Test that the validar_lista_ruts() method correctly validates a list of valid and
0 commit comments