Steven Muhr
Steven Muhr

Reputation: 3379

VS Test Runner is slow on Visual Studio Online

I am using Visual Studio Online for building and testing my application.

Executing my tests is really slow with Visual Studio Online.... In the diagnostics log of my Build I can see that VS Test Runner take 22 minutes in the cloud when it takes less than 1 minutes on my computer (I have +/- 500 NUnit tests).

Anyone has experienced the same issue?

Update : 99% of testing time is taken by 3 tests. Two of them have an exception. One of them pass.

Upvotes: 2

Views: 474

Answers (1)

Steven Muhr
Steven Muhr

Reputation: 3379

The reason why VS TestRunner was taking so much time for processing our unit tests was :

The [Ignore] attribute of NUnit was not taken into account by VS TestRunner in VSO.
So we had some dirty Unit Tests that were executed against our will.

Upvotes: 1

Related Questions