Skip to main content

Shard tests to support parallelism across multiple machines.

Project description

PyPI version

繁體中文 | English

pytest-shard-cloudc

This is a fork of AdamGleave/pytest-shard by Cloud Chen. Modifications include: Allure report integration, multi-shard result merging, nox-based tooling, and modernized packaging with pyproject.toml.

pytest-shard splits your test suite across multiple machines or CI workers at individual test-case granularity. By default it sorts tests by node ID and assigns them round-robin across shards, so parallelism works even when all tests live in a single file or a single parameterized method.

Install from PyPI with pip install pytest-shard-cloudc.

How It Works

See Sharding Modes for separate diagrams that explain how roundrobin, hash, and duration assign tests to shards.

What it does

Capability Description
Round-robin sharding (default) Sorts tests by node ID and interleaves across shards, guaranteeing shard counts differ by at most 1
Hash-based sharding Assigns each test deterministically via SHA-256(node_id) % N — per-test stable even as the suite grows
Duration-based sharding Greedy bin-packing using a .test_durations file (compatible with pytest-split) to minimise the longest shard
Zero configuration Just add --shard-id and --num-shards — no config files, no test ordering required
Any granularity Splits at the individual test level, not at the file or class level
CI-agnostic Works with GitHub Actions, CircleCI, Travis CI, or any system that runs parallel jobs
Allure integration Collect results per shard, merge them, and view a unified Timeline report

Documentation

Guide Description
Sharding Modes Detailed behavior of roundrobin, hash, and duration, including .test_durations, verbose shard reports, and mode selection guidance.
Demo Sessions How contributors can run the bundled demo suites locally with nox.
Allure Report Integration How to collect Allure results across shards, merge them into one report, run shards in parallel locally, and integrate with GitHub Actions / CircleCI. Includes a worked example with 30 tests across 3 parallel shards and a Timeline screenshot.

Quick start

Installation

pip install pytest-shard-cloudc

Split tests across N machines

# Machine 0
pytest --shard-id=0 --num-shards=3

# Machine 1
pytest --shard-id=1 --num-shards=3

# Machine 2
pytest --shard-id=2 --num-shards=3

Each machine runs roughly 1/N of the test suite. Together they cover 100% of tests.

Choose a sharding mode

# Round-robin (default) — guaranteed count balance
pytest --shard-id=0 --num-shards=3 --shard-mode=roundrobin

# Hash — per-test stable assignment, stateless
pytest --shard-id=0 --num-shards=3 --shard-mode=hash

# Duration — bin-packing by recorded test times, minimises longest shard
pytest --shard-id=0 --num-shards=3 --shard-mode=duration --durations-path=.test_durations

See Sharding Modes for detailed trade-offs, .test_durations generation, and mode selection guidance.

GitHub Actions example

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        shard_id: [0, 1, 2]
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-python@v5
        with: { python-version: "3.11" }
      - run: pip install pytest-shard-cloudc
      - run: pytest --shard-id=${{ matrix.shard_id }} --num-shards=3

CircleCI example

jobs:
  test:
    parallelism: 3
    steps:
      - run: pytest --shard-id=${CIRCLE_NODE_INDEX} --num-shards=${CIRCLE_NODE_TOTAL}

More guides

Alternatives

pytest-xdist parallelizes tests across CPU cores on a single machine and supports remote workers. A common pattern is to combine both: use pytest-shard to split work across CI nodes, and pytest-xdist to parallelize within each node.

pytest-circleci-parallelized splits by test run time rather than test count, but only at class granularity and only for CircleCI.

Contributions

Contributions are welcome. The package requires Python 3.11 or newer. Install the development toolchain and run the full check suite:

pip install -e .[dev]
nox

The Allure integration test also requires the allure CLI to be available on PATH.

License

MIT licensed.

Original work Copyright 2019 Adam Gleave. Modifications Copyright 2026 Cloud Chen.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytest_shard_cloudc-1.0.1.tar.gz (288.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pytest_shard_cloudc-1.0.1-py3-none-any.whl (7.9 kB view details)

Uploaded Python 3

File details

Details for the file pytest_shard_cloudc-1.0.1.tar.gz.

File metadata

  • Download URL: pytest_shard_cloudc-1.0.1.tar.gz
  • Upload date:
  • Size: 288.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pytest_shard_cloudc-1.0.1.tar.gz
Algorithm Hash digest
SHA256 47af9173a609ab00e07d4b2686252f7092a74e4fd234a46a32fd9467685007d0
MD5 a8a46617ba68372b3b62402b0913aa3a
BLAKE2b-256 7acf523c32c2bf8cca8c8b5bc9c09750749e18a2b3cf4c4bc0c14e30411625af

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_shard_cloudc-1.0.1.tar.gz:

Publisher: publish.yml on wolke1007/pytest-shard-cloudc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_shard_cloudc-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_shard_cloudc-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 bb3f6fbb56ce9322a856432c9b4dd43d4145c61a5df77e5814f17e2a095a52a8
MD5 a94edc9589ef39654c657199f838b355
BLAKE2b-256 5321cc526ef119072ba6e7016ab28fb87c09d381cfdd2f752130fcde161785e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_shard_cloudc-1.0.1-py3-none-any.whl:

Publisher: publish.yml on wolke1007/pytest-shard-cloudc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page