reducing the time consuming in tests
Created by: TomorrowIsAnOtherDay
Currently, it takes around 25 minutes in unittest teamcity. We can speed up the test by running multiple tests concurrently as the test finishes one by one.
That is, we use ctest -j10
in .teamcity/build.sh
, but we need to change our code it make it executable in parallel.