I have UI / system tests written with NUnit, C # and Seleium, and I use TeamCity to automatically run these tests, for example. Once a day.
The problem is that each test takes from 1 to 10 minutes, and TeamCity runs them sequentially, so it is required that they all be completed.
(please don’t worry and do not comment on why the tests take so long because they are system tests and run for several users on several sites)
Tests are independent and do not rely on each other, so they can work simultaneously.
How can I configure TeamCity to run tests simultaneously, and not one at a time?
source
share