Explorar el Código

pylint: disable irrelevant duplicate code warning in tests

Fabian Peter Hammerle hace 3 años
padre
commit
3ed507d415
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      tests/ashs_test.py

+ 1 - 1
tests/ashs_test.py

@@ -256,7 +256,7 @@ def test_hippocampal_subfields_volume_file_init(volume_file_path, expected_attrs
     ],
 )
 def test_hippocampal_subfields_volume_file_init_invalid(volume_file_path):
-    with pytest.raises(Exception):
+    with pytest.raises(Exception):  # pylint: disable=duplicate-code; freesurfer tests
         HippocampalSubfieldsVolumeFile(path=volume_file_path)