1
votes

I'm using TFS 2015 to run automated regression tests nightly. There are over 100 tests in the suite but each night 1 of them, usually the same one, shows up with the outcome "None".

If I look at the test log I see that the test does not fail. If I remove this test from the suite then on the next run the test above that one, in code, will show as "None" but it also passes.

What could cause this and how do I determine the cause?

enter image description here

1

1 Answers

1
votes

We upload results after finishing execution of the set of tests given to an agent. From #1410 it sounded like all your tests are currently going to 1 machine, which would mean all results are uploaded only at the end. Also, the Test Results tab in Build Summary (image you pasted above) only shows results once the run is complete. You can go to the Runs tab in the Test Hub to see test results as and when they are available, even for in progress runs (image below)

Source Link

enter image description here

So in other words, you have to wait for the full completion of the process, the root cause of the status none issue maybe either your enitre test process haven't finished yet or something special cause the process not finished.