Skip to main content

RunBoth

An AI changed your code. RunBoth runs both versions and tells you what actually behaves differently, including the functions nobody touched.

runboth.dev · How it works · Red team results


$ git commit -m "refactor: tidy up the rates module"

  BLOCKED: the behaviour changed and your message does not say so.

    rate(100)
      used to:  return 0.1
      now:      return 0.0

  AND 1 function you did NOT touch now behaves differently,
  because it calls what you changed:

    total(2.5, 100)          pkg/invoice.py
      used to:  return 225.0
      now:      return 250.0

What it does

It checks out both versions of your code, generates inputs for every changed function from its signature and from the constants mined out of its own bytecode, runs both versions in separate sandboxed subprocesses, and compares seven observation channels. When they disagree it hands you the exact input that separates them.

No test suite required. No network calls. No AI model. No dependencies.

Install

pip install runboth                                  # once the first release is on PyPI
pip install git+https://github.com/runboth/runboth   # works today
runboth install-hook          # a commit-msg gate, silent unless behaviour moved

As a GitHub Action, running on your own runners:

- uses: runboth/runboth@v0.1.0
  with:
    budget: 60

Three verdicts, never two

verdict meaning
changed with a witness: the arguments, the old result, the new result
no_change at budget N N generated inputs found no difference across seven channels
abstained it could not be checked, and here is the reason

"Cannot tell" and "no difference" are different claims, and collapsing them into a green check is how tools end up lying. RunBoth never says safe.

The seven channels

Return value · exception raised · warnings · stdout · stderr · argument mutation · object state.

A narrow definition of behaviour does not under-report, it lies, because whatever sits outside the definition comes back as no_change.

What it is not

Not a model checker. Kani and CBMC translate code into logic, let inputs be unconstrained symbols, and ask a solver whether a bad state is reachable within a bound. They return a proof. RunBoth executes real code on concrete values. It finds differences and reproduces them; it cannot prove absence, and never claims to.

Not mutation testing. Mutation testing damages your code to score your test suite. RunBoth damages nothing; both versions come from your git history, and no test suite is needed.

Measured

Red-teamed against eight public repositories it had never been tuned on, with an automated oracle built to catch the tool lying. 2,548 functions, zero false positives. Full method and numbers in RED_TEAM_2026-09-12.md.

repo layout functions abstained median/commit
boltons flat 268 0.0% 7.9s
sqlparse flat 230 0.9% 14.3s
arrow flat 283 1.4% 118s
cachetools src/ 325 1.8% 60.9s
more-itertools flat 843 4.4% 102.5s
packaging src/ 78 5.1% 0.2s
pluggy src/ 157 6.4% 33.5s
tenacity async 364 14.3% 192.8s

An adversarial corpus of 22 functions written specifically to induce false positives (object addresses in default repr, datetime.now, unseeded random, uuid4, os.getpid, set iteration order, mutable defaults, generators, __file__ paths) produced none.

Environment variables

variable effect
RUNBOTH_SKIP=1 let a commit through without checking it
RUNBOTH_BUDGET generated inputs per function (gate default 80)
RUNBOTH_WORKERS parallel adjudications, default 4
RUNBOTH_ALL_PATHS=1 also check tests, benchmarks, docs and task runners
RUNBOTH_ENGINE engine directory, if the hook cannot resolve it

git commit --no-verify also bypasses the gate, and the gate says so itself when it blocks.

Honest limits

  • Function-level checking is Python only. Changed files in other languages are named explicitly rather than passed over quietly.
  • Sampling finds differences; it cannot prove their absence.
  • Nondeterministic, too-slow, or unconstructible functions abstain with a reason, and are never counted as passing.
  • The sandbox contains accidents: resource limits, network blocked, filesystem writes blocked. It is not a security boundary against hostile code, and no pure-Python sandbox is.

Development

pip install -e .
pytest tests/ -q
runboth selftest          # the control suites, half of which must fail

Licence

FSL-1.1-Apache-2.0. Free for every use except building a competing product, and it converts to plain Apache 2.0 two years after each release.

Built by Kyle Clouthier at Clouthier Simulation Labs.

Download files

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

Source Distribution

runboth-0.1.0.tar.gz (131.4 kB view details)

Uploaded Source

Built Distribution

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

runboth-0.1.0-py3-none-any.whl (132.4 kB view details)

Uploaded Python 3

File details

Details for the file runboth-0.1.0.tar.gz.

File metadata

  • Download URL: runboth-0.1.0.tar.gz
  • Upload date:
  • Size: 131.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for runboth-0.1.0.tar.gz
Algorithm Hash digest
SHA256 7b6d005de9a23fe5258c0b4d5058f12a316c72028654a9be01fca3daa8606e9c
MD5 943ffbe87c097d4c4542b837664d6821
BLAKE2b-256 90ad039e6315cc99f6d9313c296f2898617a5a6a9c4bb603c524f2dcceaef661

See more details on using hashes here.

Provenance

The following attestation bundles were made for runboth-0.1.0.tar.gz:

Publisher: release.yml on runboth/runboth

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

File details

Details for the file runboth-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: runboth-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 132.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for runboth-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6645f515541d89b82521e20fc5e0b3c151853537cb16dd1f819b23af0eeb3ed3
MD5 78f93754853c6d2fe35e3566175d5482
BLAKE2b-256 222295dd39f29a482ee1d63f9ebc2ee2a3990f63ce4bc8fc504f863bfb873ef8

See more details on using hashes here.

Provenance

The following attestation bundles were made for runboth-0.1.0-py3-none-any.whl:

Publisher: release.yml on runboth/runboth

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

Release history Release notifications | RSS feed

This release

0.1.0 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page