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 diagrams and trade-offs covering all four modes: roundrobin, hash, hash-balanced, and duration.

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; respects xdist_group co-location
Hash-balanced sharding LPT bin-packing greedily spreads xdist_group groups by test count; ungrouped tests use round-robin (by node ID); deterministic for the same test collection
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, hash-balanced, 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

# Hash-balanced — greedily spreads xdist_group groups by test count; ungrouped tests use round-robin
pytest --shard-id=0 --num-shards=3 --shard-mode=hash-balanced

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

Which mode should you start with?

  • Use roundrobin if you want the safest default and roughly even test counts with no extra setup.
  • Use hash if per-test stability matters most, or if you rely on xdist_group and want group co-location without rebalancing.
  • Use hash-balanced if you use xdist_group and want to prevent large-group collisions — ungrouped tests fall back to round-robin, so shard sizes stay balanced even when most tests have no group marker.
  • Use duration if test runtimes vary a lot and you already have a valid .test_durations file.

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.

Version bumps

This repo uses bump-my-version to update the package version in pyproject.toml and uv.lock.

pip install -e .[dev]
bump-my-version bump patch --dry-run
bump-my-version bump patch

Use minor or major in place of patch when needed.

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.3.0.tar.gz (322.4 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.3.0-py3-none-any.whl (10.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pytest_shard_cloudc-1.3.0.tar.gz
  • Upload date:
  • Size: 322.4 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.3.0.tar.gz
Algorithm Hash digest
SHA256 a0fded515e92395d1382907ceb18ab1d2e8e6b5e7cc2a8874689f57e381b7c72
MD5 5a0be99f1727566df96bbac2742ac209
BLAKE2b-256 d55138f45a9adbc1307d6ee7c4c9178580addf657a0e67e51ffd7120bbf2a803

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_shard_cloudc-1.3.0.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.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_shard_cloudc-1.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c8d82e227928a2f15187418a3df7128bd1e5c43afa782a9226cc48b77edde980
MD5 72813d549cd5b3cef8e507da93dd0cf1
BLAKE2b-256 3e9b328bbbbe4550489eaaf5700f669b1ab32abcbb6751da8d4ac86b89d77b6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_shard_cloudc-1.3.0-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