license: mit
task_categories:
- text-generation
language:
- en
tags:
- agent
pretty_name: real-pbt
size_categories:
- 10K<n<100K
RealPBT: A Dataset of 50,000+ PBTs Captured from Real-World Code
A large-scale dataset of property-based tests (PBTs) extracted from real-world, permissively licensed Github repos. Each PBT comes with overlapping unit tests, and information about the functions it tests.
This data was scraped by Benchify. We scraped Hypothesis PBTs for about 24 hours, and Typescript PBTs for about 8 hours, using our own proprietary Github scraper. In each case we turned our scraper off when, anecdotally, we felt it had hit an asymptote in terms of finding new PBTs. However, the choice of when to turn the scraper off was unscientific in nature and so the relative sizes of these datasets should not be viewed as a scientific measurement of the popularity of each framework (absolutely or relatively), despite the fact that it probably does roughly reflect that information.
Note: This dataset consists of multiple jsonl files. The HuggingFace dataset viewer only shows the first one, containing Python functions under test. To see the rest, look here.
Dataset Description
This dataset contains code examples from thousands of GitHub repositories, focusing on property-based testing using Hypothesis (Python) and Fast-Check (TypeScript).
Dataset Statistics
- Property-Based Tests (PBTs): 60,628 tests
- Python PBTs: 54,345 (with detailed metrics, overlapping unit tests, and dependency information)
- TypeScript PBTs: 6,283 (without the extra stuff mentioned above)
- Unit Tests: 6,343,790 (Python only)
- Functions: 6,845,964 (Python only)
- Repositories: 27,746+ GitHub repos
Dataset Structure
The dataset consists of four JSONL files (one JSON object per line):
1. Python Property-Based Tests (pbts.jsonl)
Each record contains:
id: Unique test identifiername: Test function namecode: Complete test source codelanguage: Programming language (always "python")source_file: File path within the repositorystart_line,end_line: Line numbers in source filedependencies: List of test dependencies (Python only)repo: Repository metadataname: Repository nameurl: GitHub URLlicense: License typestars: GitHub starsforks: Fork count
metrics: Code quality metrics (Python only) from Radonloc: Lines of codesloc: Source lines of codelloc: Logical lines of codecomments: Comment linesavg_complexity: Average cyclomatic complexitymax_complexity: Maximum cyclomatic complexitymaintainability_index: Maintainability score (0-100)halstead_difficulty: Halstead difficulty metrichalstead_effort: Halstead effort metric
summary: AI-generated natural language description of test behavior (generated with4o-mini)
2. TypeScript Property-Based Tests (pbts_typescript.jsonl)
Each record contains:
id: Unique test identifiername: Test function namecode: Complete test source codelanguage: Programming language (always "typescript")source_file: File path within repositorystart_line,end_line: Line numbers (null - not available)dependencies: List of test dependencies (empty - no dependency analysis performed)repo: Repository metadataname: Repository nameurl: GitHub URLlicense: License typestars: GitHub starsforks: Fork count
metrics: Code quality metrics (null - not available)summary: AI-generated natural language description of test behaviormode: Testing framework used (always "fast-check")
3. Unit Tests (unit_tests.jsonl)
Each record contains:
id: Unique test identifiername: Test function namecode: Complete test source codelanguage: Programming language (always "python")source_file: File path within repositorystart_line,end_line: Line numbersrepo: Repository metadata (same structure as PBTs)
4. Functions (functions.jsonl)
Each record contains:
id: Unique function identifiername: Function namecode: Complete function source codelanguage: Programming language (always "python")source_file: File path within repositorystart_line,end_line: Line numbersrepo: Repository metadata (same structure as PBTs)
Language Detection
Python code validation:
- Uses Python's AST (Abstract Syntax Tree) parser
- Attempts to parse code using
ast.parse() - On success, labels as "python"
TypeScript code validation:
- Checks for fast-check framework patterns (
fc.property,fc.assert) - Validates basic syntax structure
- Verifies balanced brackets and parentheses
- On success, labels as "typescript"
The dataset includes Python (89.6%) and TypeScript (10.4%) PBTs.
Code Metrics
The Python PBT records include code quality metrics:
- Cyclomatic Complexity: Measures code path complexity
- Maintainability Index: 0-100 score (higher is better)
- Halstead Metrics: Metrics measuring code difficulty and effort
License Information
Each record includes the repository's license. Common licenses in this dataset:
- MIT
- Apache-2.0
- BSD-3-Clause
- GPL variants
We only extracted code from repos with licenses we considered permissive. If you believe we made a mistake (either sucking in a license which does not allow this kind of use, or, incorrectly determining the license of a repository) please don't hesitate to let us know and we will update the dataset accordingly.
Always check individual record licenses before use.
Citation
If you use this dataset in your research, please cite:
@dataset{realPBT,
title={{RealPBT}: 50,000+ PBTs Captured from Real-World Code},
author={Max von Hippel, Evan Boehs, Jake Ginesin},
year={2026},
publisher={HuggingFace},
note={Work supported by Benchify, Inc.},
howpublished={\url{https://huggingface.co/datasets/Benchify/realpbt}}
}
Acknowledgments
We gratefully acknowledge the following contributors who made this dataset possible:
- Max von Hippel - Led the project and performed data cleaning, dependency analysis, and data publication
- Evan Boehs and Jake Ginesin - Developed and implemented the web scraper for collecting property-based tests from open-source repositories
- Juan Castaño - Set up and managed the database infrastructure and AWS instances used for large-scale scraping operations
- The Dartmouth DALI Lab - Extended the scraper to support TypeScript property-based tests using the fast-check framework
- Sekpey Herbert Setor Kwame - Helped with Typescript PBT scraping as a DALI Lab intern
Contact
For questions, concerns, etc., please contact max@benchify.com or maxvh@hey.com.