-
Notifications
You must be signed in to change notification settings - Fork 269
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AssemblyCleanup executes after first test point in multi-test-point test run via Azure Devops Release pipeline VsTest Task when all tests are associated to the same TestMethod #3018
Comments
Hi @albert-yai, Could you please confirm that running the test locally either by
I'll investigate the behavior on AzDO to understand how VSTest calls us. |
Yes, running the test locally with vstest.console.exe produces the following output:
|
@engyebrahim could you please investigate this issue? |
Any news here @engyebrahim? |
I cannot find anything wrong on MSTest side. It would either be coming from VSTest or from AzDO. It seems they are wrapping VSTest. @nohwnd Do you know how the test plan works technically? |
Yes, it is done via TranslationLayer automation. Here is a repro of the behavior. I send the same test twice for the execution: https://github.com/microsoft/vstest/compare/Assembly-cleanup-repro You should be able to get even simpler repro in your tests (without using translation layer) where you ask the engine to run the same test twice, which is what actually happens in the execution. Problem is most likely the hashset here, where you check if all tests from a given class finished. But (because of the hashset) you only take unique names of tests, so the collection of tests that need to run before cleanup is |
Describe the bug
MSTest AssemblyCleanup executes immediately after the first test point in multi-test-point test run via Azure Devops Release pipeline VsTest Task. The bug only occurs when all tests in the test run are associated to the same MSTest TestMethod.
Version Info
bug is present on MSTest.TestFramework version >= 3.3.1
bug is not present on MSTest.TestFramework v2.2.3
Steps To Reproduce
Outcome: AssemblyCleanup executes immediately after the first test point completes.
Minimum reproducible example Visual Studio 2019 MSTest Project
MSTestProject.zip
Example MSTest implementation
Using the above example, execute Azure DevOps Release pipeline VsTest Task test run with two Test Cases associated to TestMethod.
Example mstest.log for MSTest.TestFramework v3.4.1
Example mstest.log for MSTest.TestFramework v2.2.3
NOTE: there are no MSTest code / Release pipeline changes between these two mstest.log examples. The only difference is the MSTest Nuget package version.
Expected behavior
AssemblyCleanup executes after all tests in the test run complete.
Actual behavior
AssemblyCleanup executes after the first test in a multi-test-point test run via Azure Devops Release pipeline VsTest Task when all tests are associated to the same TestMethod
Additional context
Azure DevOps Release pipeline definition
Azure DevOps Release pipeline logs
This bug does not occur if all tests in the test run are associated to unique TestMethods. All tests in the test run must be associated to the same TestMethod for the bug to manifest.
This bug was already reported on Visual Studio Developer Community. I was told to raise an issue here.
The text was updated successfully, but these errors were encountered: