nw-pbt-python

Installation
SKILL.md

PBT Python -- Hypothesis

Framework Selection

Hypothesis is the only serious choice for Python PBT. No competitive alternatives.

  • 10+ years mature, very actively maintained
  • Used by PyTorch, NumPy, pandas
  • Seamless pytest integration (no plugin needed)

Quick Start

from hypothesis import given, assume, settings, HealthCheck
from hypothesis import strategies as st

@given(st.lists(st.integers()))
def test_sort_idempotent(xs):
    assert sorted(sorted(xs)) == sorted(xs)
Installs
6
Repository
nwave-ai/nwave
GitHub Stars
600
First Seen
Apr 4, 2026
nw-pbt-python — nwave-ai/nwave