@@ -97,7 +97,60 @@ public void ApplyToContext(TestExecutionContext context)
97
97
/// <param name="command">the test command</param>
98
98
/// <returns>the wrapped test command</returns>
99
99
public TestCommand Wrap ( TestCommand command )
100
- => new UnobservedTaskExceptionCommand ( command ) ;
100
+ {
101
+ if ( Environment . GetEnvironmentVariable ( "CI" ) != null )
102
+ {
103
+ command = new RetryCommand ( command , 3 ) ;
104
+ }
105
+ return new UnobservedTaskExceptionCommand ( command ) ;
106
+ }
107
+
108
+ // RetryAttribute.RetryCommand only retries AssertionException but we want to retry all exceptions. See
109
+ // https://github.com/nunit/nunit/issues/1388#issuecomment-2574970271
110
+ internal class RetryCommand ( TestCommand innerCommand , int retryCount ) : DelegatingTestCommand ( innerCommand )
111
+ {
112
+ private readonly int _retryCount = retryCount ;
113
+
114
+ public override TestResult Execute ( TestExecutionContext context )
115
+ {
116
+ int tryCount = 0 ;
117
+ bool isPassed = false ;
118
+
119
+ while ( tryCount < _retryCount )
120
+ {
121
+ try
122
+ {
123
+ innerCommand . Execute ( context ) ;
124
+ if ( context . CurrentResult . ResultState == ResultState . Success )
125
+ {
126
+ isPassed = true ;
127
+ break ;
128
+ }
129
+ }
130
+ catch ( Exception ) { }
131
+
132
+ tryCount ++ ;
133
+ if ( tryCount < _retryCount )
134
+ {
135
+ // Reset only if there will be another retry
136
+ context . CurrentResult = context . CurrentTest . MakeTestResult ( ) ;
137
+ }
138
+
139
+ }
140
+
141
+ LogFinalOutcome ( context . CurrentResult , tryCount == 0 , isPassed ) ;
142
+
143
+ return context . CurrentResult ;
144
+ }
145
+
146
+ private void LogFinalOutcome ( TestResult result , bool firstAttempt , bool isPassed )
147
+ {
148
+ if ( ! firstAttempt )
149
+ {
150
+ Console . Error . WriteLine ( $ "WARNING: Test { result . FullName } needed { _retryCount } retries and { ( isPassed ? "passed" : "failed" ) } ") ;
151
+ }
152
+ }
153
+ }
101
154
102
155
/// <summary>
103
156
/// Helper to detect UnobservedTaskExceptions
0 commit comments