FairSplice
FairSplice is a CLI tool designed to optimize test distribution across multiple workers. By intelligently selecting and saving test cases, FairSplice ensures balanced workload distribution for your CI/CD pipelines, making tests run time more predictable.
We found Github Actions lacking when compared to CircleCI which has tests splitting based on timings.
There are a number of projects like Split tests but they require uploading and downloading Junit XML files and merging them, or committing the Junit files to have them when running the tests.
This tool uses instead a Redis server to store the last 10 timings for each test file and uses the average of these to select tests. It is easy to setup if you have a Redis server running.
Installation
This project is built using Bun and Redis.
Ensure you have Bun installed.
Then run the following command to install dependencies:
bun install
To build a binary, you can run:
bun compile
This will create a fairsplice
binary in the current directory.
Configuration
Before using FairSplice, set the environment variable FAIRSPLICE_REDIS_URL
to your Redis server URL. This is necessary for storing and retrieving test case information.
export FAIRSPLICE_REDIS_URL='redis://myuser:mypassword@your-redis-url.upstash.io:33683'
Usage
FairSplice supports two main commands: save
and select
.
Saving Test Results
To save test results:
fairsplice save --from <file>
--from <file>
: Specify the file path to read test results from.
Example:
fairsplice save --from results/junit.xml
Selecting Test Cases
To select test cases for execution:
fairsplice select --pattern "<pattern>" [--pattern "<anotherPattern>" ...] --total <total> --index <index>
--pattern "<pattern>"
: Pattern to match test files. Can be used multiple times to specify multiple patterns.--total <total>
: Total number of workers in the test environment.--index <index>
: Index of the current worker (0-based).
Example:
fairsplice select --pattern "test_*.py" --pattern "tests*.py" --total 3 --index 1
Help
For a detailed list of commands and options, use the help command:
fairsplice --help
Contributing
Contributions are welcome! Please fork the repository and submit a pull request with your improvements.
Running locally
Launch the development version with:
bun run index.ts
Running tests
Launch the following command to run tests:
bun test [--watch]
License
FairSplice is open-source software licensed under the MIT license.