Flake-proof regression testing for LLM agents
Project description
signaltest
Regression tests for LLM agents that don't fail your CI on noise.
LLMs are non-deterministic, so naive eval checks flake: a score drifts a point on randomness, CI goes red, the team stops trusting it, and the check gets deleted. signaltest runs each case several times and blocks a PR only when a regression is statistically real and large enough to matter — then shows a diff of what actually changed in the agent's run.
Local-first. No account, no service, no data leaves your repo.
Status: v0.1.0.
Contents
- Why
- Install
- Quick start
- Testing a whole suite
- Metrics
- How it works
- Configuration
- Baselines
- Using it in CI
- CLI
- Development
- FAQ
- Contributing
- License
Why
Most eval tools score an agent once and compare against a fixed threshold. With a stochastic model, that threshold flakes: the same prompt scores 0.84 one run and 0.81 the next. CI fails on the bad draw, people stop believing it, and the safety net is gone.
signaltest treats the score as a distribution, not a number. It samples the agent
n times for the candidate, compares against n recorded baseline samples, and
only fails when the difference is statistically significant and clears a
minimum effect size. Noise stays green. Real regressions go red.
Install
pip install signaltest
Or with uv:
uv pip install signaltest # into the active environment
uv add signaltest # into a uv-managed project
Quick start
Write a normal pytest test. Give signaltest a way to run your agent, the expected output, and a metric.
from signaltest import Case, assert_no_regression, ExactMatch
def test_math_agent():
case = Case(
case_id="math_qa",
run=lambda: my_agent("what is 2 + 2?"),
expected="4",
metric=ExactMatch(),
)
assert_no_regression(case, "baselines/math_agent.json", n=10)
The first run records a baseline (committed as JSON in your repo). Later runs compare against it and fail the test only on a real regression.
Testing a whole suite
run_suite runs many cases and applies a multiple-comparison correction across
them, so a suite of 50 cases doesn't go red just because one flaked.
from signaltest import Case, run_suite, format_report, exit_code, ExactMatch
cases = [
Case("math", run=lambda: my_agent("2 + 2?"), expected="4", metric=ExactMatch()),
Case("geo", run=lambda: my_agent("capital of France?"), expected="Paris", metric=ExactMatch()),
]
results = run_suite(cases, "baselines/agent.json", n=10)
print(format_report(results))
raise SystemExit(exit_code(results))
format_report prints a per-case summary; exit_code returns 1 if any case
regressed, 0 otherwise — drop it straight into a CI step.
A failing case reports the measured effect size and p-value, so you see how big the regression is, not just that one happened:
PASS geo: no significant regression
FAIL math: significant regression past the effect floor (effect=-0.180, p=0.004)
1 passed, 1 failed, 0 inconclusive
Metrics
A metric declares its kind (numeric or boolean, which picks the significance
test) and its polarity (is higher or lower better).
| Metric | Kind | Polarity | Scores |
|---|---|---|---|
ExactMatch() |
boolean | higher better | output == expected |
Contains() |
boolean | higher better | expected in output |
Numeric(name, polarity) |
numeric | configurable | the raw value (latency, cost, judge score) |
TrajectoryMatch(ignore_keys=...) |
numeric | higher better | fraction of matching agent tool-calls |
Numeric with polarity="lower_better" is how you gate latency or cost — a real
increase becomes the regression.
from signaltest import Numeric
from signaltest.metrics.base import LOWER_BETTER
latency = Numeric(name="latency_ms", polarity=LOWER_BETTER)
TrajectoryMatch compares the agent's tool-call path against a reference path and
ignores volatile keys (timestamps, ids):
from signaltest import TrajectoryMatch, Step
expected_path = [Step("search", {"q": "weather"}), Step("answer", {})]
metric = TrajectoryMatch(ignore_keys=("request_id",))
How it works
candidate runs n times ─┐
├─> significance test ─┐
stored baseline samples ┘ ├─> block only if
│ significant AND
effect size ─────────┘ past the floor
- Significance — a permutation test for numeric metrics, Fisher's exact test for boolean metrics. Both are seeded, so the same inputs always give the same result. The gate that kills flakiness is not itself flaky.
- Effect floor — a regression must also clear a minimum effect size, so a statistically significant but meaningless 0.1% drift never blocks the build.
- Multiple comparisons — across a suite, p-values are adjusted with the Benjamini-Hochberg procedure, so flakiness doesn't reappear at the suite level.
- Power — cases with too few samples to detect a real change are flagged
inconclusive, never passed silently. - Model versioning — a baseline records the model it was captured under. If you
pass a new
model=and it differs, the baseline is re-recorded instead of reported as a regression, so a provider model swap can't masquerade as one.
Configuration
Every assert_no_regression / check_case / run_suite call accepts:
| Argument | Default | Meaning |
|---|---|---|
n |
10 |
samples per run (boolean metrics usually want more) |
alpha |
0.05 |
significance threshold |
min_effect |
0.03 numeric / 0.10 boolean |
minimum effect size to count |
min_valid |
2 |
fewer valid samples than this → inconclusive |
model |
None |
model id recorded with the baseline |
Baselines
A baseline is a JSON file committed to your repo. Each entry is keyed by
case_id::metric_name and stores the recorded scores and the model.
- Cold start — the first run records the baseline and passes.
- Updating — to accept a new baseline on purpose, delete the case's entry and re-run, or edit the JSON. The change is a reviewable diff in the same PR.
- Inspecting — use the CLI (below).
Using it in CI
Because cases are plain pytest tests, your existing pytest step gates them:
- run: pip install -e ".[dev]"
- run: pytest
A failed case fails the build. Baselines live in the repo, so CI needs no secrets and nothing leaves your infrastructure.
CLI
signaltest version
signaltest baselines baselines/agent.json # list recorded cases
signaltest show baselines/agent.json math::exact_match
Development
git clone https://github.com/Falcon305/signaltest
cd signaltest
python -m venv .venv && . .venv/bin/activate
pip install -e ".[dev]"
pytest
ruff check src tests examples
With uv the setup is a single command (it creates the environment for you):
uv sync --extra dev
uv run pytest
Try the offline examples (cached responses, no API key):
python examples/demo.py # smallest possible case
python examples/tool_agent.py # tool-using agent: trajectory + answer checks
See docs/architecture.md for how the pieces fit together and how to add your own metric.
FAQ
Does it call my LLM? Only through the run function you provide. signaltest
never talks to a provider itself.
How many samples do I need? n=10 is a sane default for numeric metrics.
Boolean metrics resolve in coarser steps, so they need more — bump n and watch
for inconclusive, which means the test can't yet detect a change of the size you
care about.
Why did a case come back inconclusive? Too few valid samples to be
trustworthy. Increase n, or fix whatever made runs error out.
Does my data leave my machine? No. Baselines are local JSON; there is no service.
Contributing
Issues and pull requests are welcome. Keep changes small and focused, and add a
test for anything you change. See CONTRIBUTING.md.
License
MIT
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file signaltest-0.1.0.tar.gz.
File metadata
- Download URL: signaltest-0.1.0.tar.gz
- Upload date:
- Size: 19.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11cf1ce578b38f4a28714b6f440bf57611876f1e088cc068ecb1667cb5493b06
|
|
| MD5 |
0d1e549afa3e9728743a01fa53bb72d3
|
|
| BLAKE2b-256 |
5dcf522984f1a5e0bd05f6cd956418e1fd8286705da8a206e4d52d85f6e3fdec
|
Provenance
The following attestation bundles were made for signaltest-0.1.0.tar.gz:
Publisher:
release.yml on Falcon305/signaltest
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
signaltest-0.1.0.tar.gz -
Subject digest:
11cf1ce578b38f4a28714b6f440bf57611876f1e088cc068ecb1667cb5493b06 - Sigstore transparency entry: 2017562831
- Sigstore integration time:
-
Permalink:
Falcon305/signaltest@ba121e5272c70ee17393f4cdc489369ed22e6a3a -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Falcon305
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba121e5272c70ee17393f4cdc489369ed22e6a3a -
Trigger Event:
push
-
Statement type:
File details
Details for the file signaltest-0.1.0-py3-none-any.whl.
File metadata
- Download URL: signaltest-0.1.0-py3-none-any.whl
- Upload date:
- Size: 17.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b49b6b8e0a7a07bf61270c1e00e79734623b7d7d3176fabdfa35bb7cfaea792
|
|
| MD5 |
dde2c3de3bf349f56dc314834fe6e4b3
|
|
| BLAKE2b-256 |
9d3f1591954d34247bbe7f80a1c76afea38fd932d6a2e653c2c73e42ea23db4d
|
Provenance
The following attestation bundles were made for signaltest-0.1.0-py3-none-any.whl:
Publisher:
release.yml on Falcon305/signaltest
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
signaltest-0.1.0-py3-none-any.whl -
Subject digest:
0b49b6b8e0a7a07bf61270c1e00e79734623b7d7d3176fabdfa35bb7cfaea792 - Sigstore transparency entry: 2017562938
- Sigstore integration time:
-
Permalink:
Falcon305/signaltest@ba121e5272c70ee17393f4cdc489369ed22e6a3a -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Falcon305
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba121e5272c70ee17393f4cdc489369ed22e6a3a -
Trigger Event:
push
-
Statement type: