testexecute - pipeline Azure DevOps doesn't stop project on item
Hi,
I have searched a solution about my problem, but I didn't find anything. I hop somebody have a solution here 😉 :
I have in my project 2 items with option "Stop project" on error.
when I execute it in testComplete it's ok :
If the first item is failed, the second items not run
, but in a Azure pipeline Yaml Azure DevOps after an error in the first item, the second item run also
- task: VSTest@2
displayName : "Tests Run : Basic Order KeywordTests"
condition: eq('${{ parameters.typedemo }}', 'VM-Basic Order KeywordTests -> Tests OK')
inputs:
testSelector: 'testAssemblies'
testAssemblyVer2: 'Desktop\Orders\Delphi\TCProjects\JavaScript\*.pjs'
searchFolder: '$(System.DefaultWorkingDirectory)'
testFiltercriteria: 'Project=Orders_Delphi_JavaScript'
runSettingsFile: 'RunSetting/test.runsettings'
I try to add an event on error but it's the same result
It seems the both items are distinct and not in the same project ..???
I share woth you my project zipped, contains too log and trx from the execution of my pipeline AZDO
Thanks for your help