I am running a few ordered tests using Azure DevOps pipelines. The result for the tests is grouped into a single ordered test. It is becoming very difficult to interpret the result. Is it possible to obtain a separate pass/fail result?
In the screenshot below, the ordered test contains about 75 tests and only one of them fails. But that results in an overall 1 Test failed result. Is it possible to show 74 passed, 1 failed result in the Tests Results?



According to your description, since you are using ordered test. It's an expect behavior. The tests will be grouped and be reported in a summarized view.
You could take a look at the statement in our official doc here-- View summarized test results
It's not possible to show 74 passed, 1 failed result in the Tests Results.
To see test results of individual tests in the ordered test suite you may need to download the
*.trxfile and open it in Visual Studio.