diff --git a/documentation/ReleaseNotes.md b/documentation/ReleaseNotes.md index 3f70c74..8783206 100644 --- a/documentation/ReleaseNotes.md +++ b/documentation/ReleaseNotes.md @@ -3,6 +3,7 @@ * Console runner Revit language support * Console runner exit code -1 on some failed tests * Fix bug where longer running tests are not accounted + * Update notification on start of test group * v1.3.6 [March 2022] diff --git a/src/Revit.TestRunner/Runner/ReflectionRunner.cs b/src/Revit.TestRunner/Runner/ReflectionRunner.cs index 8b367e8..a5d67a7 100644 --- a/src/Revit.TestRunner/Runner/ReflectionRunner.cs +++ b/src/Revit.TestRunner/Runner/ReflectionRunner.cs @@ -35,6 +35,7 @@ internal async Task RunTestClassGroup( IGrouping testClassG var instance = new TestInstance( testClassGroup.First().AssemblyPath, testClassGroup.Key ); try { + updateAction( testClassGroup.First(), false ); await instance.CreateTestInstance( mUiApplication ); } catch( Exception e ) {