You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Test load balancing was implemented in Typescript Demo Lib using Jest's --shard option in order to parallelise the tests there. We can do a similar thing here in order to speed up our tests. Due to upstream issues we are currently unable to include stdout/stderr output in our Junit reports on Gitlab (MatrixAI/TypeScript-Demo-Lib#66) so sharding is not suitable for our linux tests where we may need to be debugging on the CI/CD. As such, we can leave the existing child pipeline setup for our linux tests and introduce test load balancing only to our tests running on other platforms.
Specification
Test load balancing was implemented in Typescript Demo Lib using Jest's
--shard
option in order to parallelise the tests there. We can do a similar thing here in order to speed up our tests. Due to upstream issues we are currently unable to includestdout
/stderr
output in our Junit reports on Gitlab (MatrixAI/TypeScript-Demo-Lib#66) so sharding is not suitable for our linux tests where we may need to be debugging on the CI/CD. As such, we can leave the existing child pipeline setup for our linux tests and introduce test load balancing only to our tests running on other platforms.Additional context
--shard
option TypeScript-Demo-Lib#65 - PR for test load balancing on TS Demo LibTasks
The text was updated successfully, but these errors were encountered: