Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fairsplice

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fairsplice

**Warning: this project is still in very early development!**

  • 0.4.3
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
10K
decreased by-22.98%
Maintainers
1
Weekly downloads
 
Created
Source

Fairsplice

Warning: this project is still in very early development!

Fairsplice is a CLI tool designed to optimize test distribution across multiple workers. By intelligently splitting and saving test cases, Fairsplice ensures a 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 split 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. To launch it, run

bunx fairsplice

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 split.

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

Splitting test cases

To split test cases for execution:

fairsplice split --pattern "<pattern>" [--pattern "<anotherPattern>" ...] --total <total> --out <file> --replace-from <string> --replace-to <string> [--replace-from <other> --replace-to <other>]
  • --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.
  • --out <file>: File to write split test files to (newline separated)
  • --replace-from <string>: Substring to replace in the file paths (can be used multiple times)
  • --replace-to <string>: Replacement for the substring (can be used multiple times but must match the number of --replace-from)

Example:

fairsplice split --pattern "test_*.py" --pattern "tests*.py" --total 3 --out split.json

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.

FAQs

Package last updated on 28 Feb 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc