@@ -593,6 +593,8 @@ def cli():
593
593
class GroupTestCase (unittest .TestCase ):
594
594
"""Validate basic ``click.Group`` instances."""
595
595
596
+ maxDiff = None
597
+
596
598
def test_no_parameters (self ):
597
599
"""Validate a `click.Group` with no parameters.
598
600
@@ -685,6 +687,8 @@ def cli():
685
687
class NestedCommandsTestCase (unittest .TestCase ):
686
688
"""Validate ``click.Command`` instances inside ``click.Group`` instances."""
687
689
690
+ maxDiff = None
691
+
688
692
@staticmethod
689
693
def _get_ctx ():
690
694
@click .group ()
@@ -779,6 +783,8 @@ def test_nested_none(self):
779
783
class CommandFilterTestCase (unittest .TestCase ):
780
784
"""Validate filtering of commands."""
781
785
786
+ maxDiff = None
787
+
782
788
@staticmethod
783
789
def _get_ctx ():
784
790
@click .group ()
@@ -851,6 +857,8 @@ def test_order_of_commands(self):
851
857
class CustomMultiCommandTestCase (unittest .TestCase ):
852
858
"""Validate ``click.MultiCommand`` instances."""
853
859
860
+ maxDiff = None
861
+
854
862
def test_basics (self ):
855
863
"""Validate a custom ``click.MultiCommand`` with no parameters.
856
864
@@ -967,6 +975,8 @@ def get_command(self, ctx, name):
967
975
class CommandCollectionTestCase (unittest .TestCase ):
968
976
"""Validate ``click.CommandCollection`` instances."""
969
977
978
+ maxDiff = None
979
+
970
980
def test_basics (self ):
971
981
"Validate a ``click.CommandCollection`` with grouped outputs."
972
982
@@ -1038,6 +1048,8 @@ def world():
1038
1048
class AutoEnvvarPrefixTestCase (unittest .TestCase ):
1039
1049
"""Validate ``click auto_envvar_prefix``-setup instances."""
1040
1050
1051
+ maxDiff = None
1052
+
1041
1053
def test_basics (self ):
1042
1054
"""Validate a click application with ``auto_envvar_prefix`` option enabled."""
1043
1055
0 commit comments