rupali_sonawane
2 months agoOccasional Contributor
testFiltercriteria not applied
Until yesterday test was running fine with the below highlighted test criteria in azure pipeline. After Updating the test agent test are not getting filtered from the execution plan. Exec...
- 2 months ago
I've found a working workaround, by using the previous older TestAdapter version 1.15069.139, till the fix will be available.
I share it with you since this could temporarily resolve the issue also for you and let it possible to not block your test automation execution.
You can specify it as follows within your release pipeline, writing the complete working version on the task after InstallTestCompleteAdapter:
- task: InstallTestCompleteAdapter@1.15069.139 displayName: "TestComplete test adapter installer" continueOnError: false inputs: installExecutor: false updateExecutor: false
With this configuration, next VSTest tasks will work as expected.Surely, when SmartBear or Microsoft will provide the fix, this workaround will need to be reverted to get the latest TestAdapter version.