Skip to main content

A CLI tool that generates and runs tests for changed Python functions before executing commands

Project description

GuardRail

A CLI tool that automatically generates and runs tests for changed Python functions before executing commands. GuardRail uses AI to analyze your code changes, generate comprehensive tests, and blocks execution if tests fail.

Features

  • 🔍 Automatic Change Detection - Detects changed Python functions using git diff
  • 🧠 AI-Powered Test Generation - Uses OpenAI to generate comprehensive pytest tests
  • 🛡️ Side-Effect Detection - Automatically skips functions with side effects (network, DB, file I/O)
  • Test Execution - Runs generated tests automatically before your command
  • 🚫 Execution Blocking - Prevents command execution if tests fail
  • 🔧 Fix Prompts - Provides detailed fix prompts when tests fail

Installation

Quick Install (from Git)

# Clone the repository
git clone https://github.com/yourusername/GuardRail.git
cd GuardRail

# Install in editable mode
pip install -e .

Install from Local Directory

If you have the GuardRail folder:

cd /path/to/GuardRail
pip install -e .

Install from PyPI (when published)

pip install guardrail

See INSTALLATION.md for detailed installation instructions.

Quick Start

1. Initialize GuardRail

guardrail init

This will:

  • Create .guardrail/config.toml - Configuration file
  • Create .guardrail/cache.sqlite - Cache database
  • Prompt you for your OpenAI API key (or set OPENAI_API_KEY environment variable)

2. Run Commands with GuardRail

guardrail run -- pytest
guardrail run -- python main.py
guardrail run -- uvicorn app:app

GuardRail will:

  1. Detect changed Python functions
  2. Classify them (pure vs side-effect)
  3. Generate tests for pure functions
  4. Run the tests
  5. Block execution if tests fail
  6. Execute your command if tests pass

3. Manual Check (without running command)

guardrail check

Runs the same detection and test generation flow without executing a command at the end.

How It Works

1. Change Detection

GuardRail uses git diff to detect unstaged changes in Python files and identifies which functions were modified.

2. Function Analysis

  • Parses Python files using AST
  • Extracts function definitions with line numbers
  • Maps changed lines to specific functions

3. Side-Effect Classification

Automatically detects and skips functions with:

  • Network calls (requests, httpx, aiohttp)
  • Database operations (sqlite3, psycopg2, pymongo, redis)
  • File I/O (open(), file operations)
  • System calls (subprocess, os.system)

4. Test Generation

For pure functions, GuardRail:

  • Generates a SpecCard (function specification) using AI
  • Generates comprehensive pytest tests based on the SpecCard
  • Saves tests to tests/guardrail_generated/

5. Test Execution

  • Runs pytest on generated tests
  • Blocks command execution if tests fail
  • Provides detailed fix prompts for failing tests

Configuration

Configuration is stored in .guardrail/config.toml:

version = "0.1.0"
test_dir = "tests/guardrail_generated"
cache_enabled = true
openai_api_key = "sk-..."  # Stored securely

Environment Variables

  • OPENAI_API_KEY - OpenAI API key (alternative to storing in config)

Example Workflow

# Make changes to a Python function
$ vim my_module.py

# Run your command with GuardRail
$ guardrail run -- python main.py

🔍 Detecting changed files...
📝 Found 1 changed Python file(s):
  📄 my_module.py (lines: 10-15)

🔎 Analyzing changed functions...
  📄 my_module.py
    Functions touched: 1
       calculate_total - Pure-ish

🤖 Generating tests for 1 pure function(s)...
  📝 Generating spec for calculate_total...
   Spec generated (confidence: high)
  🧪 Generating tests...
   Test saved: tests/guardrail_generated/test_my_module_calculate_total.py

✅ Generated 1 test file(s)

🧪 Running generated tests...
✅ All tests passed!

🚀 Running: python main.py
[Your command output...]

Requirements

  • Python 3.8+
  • Git repository (for change detection)
  • OpenAI API key
  • pytest (for running tests)

Development Status

V1 Complete - All core features implemented

Completed Features

  • ✅ Change detection (git diff)
  • ✅ AST function locator
  • ✅ Side-effect classifier
  • ✅ AI-powered test generation
  • ✅ Test execution and blocking
  • ✅ Fix prompt generation
  • ✅ Manual check command
  • ✅ Caching system

Troubleshooting

"OpenAI API key not found"

Run guardrail init to configure your API key, or set the OPENAI_API_KEY environment variable.

"pytest not found"

Install pytest: pip install pytest

"Not a git repository"

GuardRail requires a git repository for change detection. Initialize git: git init

Tests failing but function seems correct

The generated tests might be too strict. Check the test file in tests/guardrail_generated/ and adjust if needed.

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

guardrail_ai-0.1.2.tar.gz (27.0 kB view details)

Uploaded Source

Built Distribution

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

guardrail_ai-0.1.2-py3-none-any.whl (31.7 kB view details)

Uploaded Python 3

File details

Details for the file guardrail_ai-0.1.2.tar.gz.

File metadata

  • Download URL: guardrail_ai-0.1.2.tar.gz
  • Upload date:
  • Size: 27.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.7

File hashes

Hashes for guardrail_ai-0.1.2.tar.gz
Algorithm Hash digest
SHA256 02aa42064382c4dcff819623e3eef2816206f0fa481d263ad07e43c76f57b88b
MD5 5879838e53584abb1a439df1dee1bc73
BLAKE2b-256 5b6e8bd18fe1a7cd71582d7300932558f7feaa66c6e0ddceb72e980c24ff5cf8

See more details on using hashes here.

File details

Details for the file guardrail_ai-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: guardrail_ai-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 31.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.7

File hashes

Hashes for guardrail_ai-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 38a4e37280927da4cf265236f68f41aebc5589ce1cd0434f988f29f2824a463a
MD5 1f318d2dde0c1e0e49ce8f8867aff391
BLAKE2b-256 8c07656d2728e2b582b33c41476fb76e86509e50ed3196ce183a3db08a04ad18

See more details on using hashes here.

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