Forum Discussion

rupali_sonawane's avatar
rupali_sonawane
Occasional Contributor
2 months ago
Solved

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...
  • simonaferrara's avatar
    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.