Reputation: 2235
I have few thousands of test cases. There are 2 types of testing being done. What is automated on multiple blades, integrated by TeamCity. The other is manual testing.
The same test cases, when run on TeamCity takes no less than 60 minutes (one class and each class has 24 test cases). The same class if run locally takes about 10 min max.
I want to see what is going on and why the Teamcity test cases are taking so long. Any pointers?
P.S:
Upvotes: 0
Views: 152
Reputation: 533492
Try recording how long each test takes to see if particular tests are slow. Try running the tests outside teamcity on the same machine. It is likely to be nothing to do with teamcity.
Upvotes: 1