@@ -2043,7 +2043,6 @@ def test(
20432043 verbosity : Verbosity = Verbosity .DEFAULT ,
20442044 preserve_fixtures : bool = False ,
20452045 stream : t .Optional [t .TextIO ] = None ,
2046- log_results : bool = True ,
20472046 ) -> ModelTextTestResult :
20482047 """Discover and run model tests"""
20492048 if verbosity >= Verbosity .VERBOSE :
@@ -2066,11 +2065,10 @@ def test(
20662065 default_catalog_dialect = self .config .dialect or "" ,
20672066 )
20682067
2069- if log_results :
2070- self .console .log_test_results (
2071- result ,
2072- self .test_connection_config ._engine_adapter .DIALECT ,
2073- )
2068+ self .console .log_test_results (
2069+ result ,
2070+ self .test_connection_config ._engine_adapter .DIALECT ,
2071+ )
20742072
20752073 return result
20762074
@@ -2498,7 +2496,7 @@ def _run_tests(
24982496 self , verbosity : Verbosity = Verbosity .DEFAULT
24992497 ) -> t .Tuple [ModelTextTestResult , str ]:
25002498 test_output_io = StringIO ()
2501- result = self .test (stream = test_output_io , verbosity = verbosity , log_results = False )
2499+ result = self .test (stream = test_output_io , verbosity = verbosity )
25022500 return result , test_output_io .getvalue ()
25032501
25042502 def _run_plan_tests (self , skip_tests : bool = False ) -> t .Optional [ModelTextTestResult ]:
0 commit comments