8000 GitHub - rnjn/tlb: A test load balancer that splits tests in multiple mutually exclusive and collectively exhaustive partitions, and allows running them in parallel to reduce build time.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
/ tlb Public
forked from test-load-balancer/tlb

A test load balancer that splits tests in multiple mutually exclusive and collectively exhaustive partitions, and allows running them in parallel to reduce build time.

License

Notifications You must be signed in to change notification settings

rnjn/tlb

 
 

Repository files navigation

Rationale:

A typical problem that teams doing CI (continuous integration) try and solve is to get the build time to an acceptable amount so that frequent checkins are possible. However, with a steady increase in the number of tests, the time taken to run these tests on every checkin keeps increasing. Solving this problem in the build is almost always non trivial. This is where parallelizing builds comes handy. Throwing hardware at this problem is one of the potential solutions to get build time under acceptable limits.

TestLoadBalancer (TLB) aims at splitting your entire test suite into mutually exclusive units such that each of the unit can be executed in parallel. Assuming that tests are written independent of each other, which is a best practice in writing tests, the tests can be ordered and arranged in anyway and TLB leverages this fact in order to split the test suite and reorder the tests.

Documentation:

Detailed documentation of TLB concepts and configuration options is available in the TLB Website.

Supported Frameworks:

Please check the list of supported frameworks on the TLB Website.

Contributors:

Core Team:

Other Contributors:

History:

TLB started in Jan 2010 as an attempt to enhance another similar project called TestLoadBalancer(hosted on code.google.com and github.com). However due to some other issues inheriting the codebase for reuse/enhancement was not possible, besides the direction planned for the new codebase was not aligned with the structure of TestLoadBalancer codebase, so we decided to build TLB from scratch. The old TestLoadBalancer originally implemented the idea of load balancing tests based on count, and inspired the creation of TLB. The project is not developed or maintained anymore and is not hosted publicly.

People behind TestLoadBalancer(the old project)

About

A test load balancer that splits tests in multiple mutually exclusive and collectively exhaustive partitions, and allows running them in parallel to reduce build time.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 97.9%
  • Shell 2.1%
0