Skip to main content

A smart GitHub webhook service that analyzes PRs to determine test impact

This project has been archived.

The maintainers of this project have marked this project as archived. No new releases are expected.

Project description

Test Impact Analyzer Agent

A smart GitHub webhook service that analyzes pull requests to determine which tests should be run based on code changes. The agent uses AI to understand code dependencies and suggest relevant tests.

Features

  • GitHub webhook integration for pull request events
  • Intelligent test impact analysis
  • Automatic PR comments with analysis results
  • Support for multiple programming languages
  • Configurable via environment variables

Overall Architecture

+------------------+    +------------------+    +------------------+
|  GitHub Webhook  |--->|    AI Agent      |--->|   Test Runner    |
|   (PR Events)    |    |(Direct Git API)  |    |  (pytest/jest)   |
+------------------+    +------------------+    +------------------+
                               |
                       +------------------+
                       |   Local Git +    |
                       |   GitHub API     |
                       +------------------+
                               |
                       +------------------+
                       |  Ollama (Local   |
                       |      LLM)        |
                       +------------------+

Prerequisites

System Requirements

  • Python 3.8 or higher
  • Git 2.x or higher
  • Node.js 16+ (for JavaScript/TypeScript projects)
  • Docker (optional, for containerized deployment)
  • 8GB RAM minimum (16GB recommended for Ollama LLM)
  • Operating System:
    • Linux (Ubuntu 20.04+, CentOS 7+)
    • macOS (Big Sur or newer)
    • Windows 10/11 with WSL2
  • Disk Space:
    • 5GB for base installation
    • 4GB+ for Ollama models
    • Additional space for analyzed repositories

Ollama Setup

  1. Install Ollama:
# macOS and Linux
curl -fsSL https://ollama.com/install.sh | sh

# Windows
# Download from https://ollama.com/download/windows
  1. Pull the required model:
ollama pull qwen2.5-coder:7b
  1. Update your .env file with Ollama configuration:
OLLAMA_HOST=http://localhost:11434
OLLAMA_MODEL=qwen2.5-coder:7b
  1. Verify Ollama is running:
curl http://localhost:11434/api/health

Note: Ensure Ollama is running before starting the webhook server.

Agent Installation and Configurations

  1. Create and activate a virtual environment:
python -m venv venv
source venv/bin/activate
  1. Set up environment variables in .env:
# GitHub token with minimal scope (pull_request:write) for PR comments
GITHUB_TOKEN=your_github_token

# Server configuration (optional, defaults shown)
PORT=5043
HOST=0.0.0.0
DEBUG=False
Note: For security best practices, limit the GitHub token scope to only `pull_request:write` access. Here's how to create a token with minimal permissions:

1. Go to GitHub Settings > Developer Settings > Personal access tokens > Fine-grained tokens
2. Click "Generate new token"
3. Set token name (e.g., "Test Impact Analyzer")
4. Set expiration date
5. Select the specific repository you want to analyze
6. Under "Repository permissions":
   - Pull requests: Access level "Write"
   - Leave all other permissions unchecked
7. Click "Generate token"
8. Copy the token and add it to your `.env` file
  1. Install agent from PyPI (Recommended)
pip install test-impact-analyzer
  1. Install ngrok (this is required for configuring Github Webhook for listening to PR events):
# macOS with Homebrew
brew install ngrok

# Windows with Chocolatey
choco install ngrok

# Or download from https://ngrok.com/download
  1. In a new terminal, create a public URL with ngrok (note down the public URL):
ngrok http 5043
  1. Configure your GitHub repository webhook:
    • Copy the ngrok URL from previous step (e.g., https://a1b2-c3d4.ngrok.io)
    • Navigate to your Github Repo => Settings => Webhooks
    • Webhook URL: https://your-ngrok-url/webhook
    • Events: Select "Pull requests"
    • Content type: application/json
    • Secret: Leave empty for testing
    💡 Want to know more about creating Github Webhooks, refer official documentation here: https://docs.github.com/en/webhooks/using-webhooks/creating-webhooks
    

Note: The ngrok URL changes each time you restart ngrok. Update your webhook URL in GitHub repository settings accordingly.

Usage

Following the instructions given in Agent Installation and Configurations section, AI Agent is ready to use

Running as a Webhook Server

  1. Start the server:
test-impact-analyzer

The server will automatically:

  • Analyze new pull requests (created/reopened in your project in Github)
  • Comment with test recommendations
  • Update analysis when PRs are updated

Limitations/Upcoming Features

  • Currently it Supports Python and Node JS projects only.
  • For Node JS projects the Runner for tests is configured as npm test. More will be added soon

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Commit your changes
  4. Push to the branch
  5. Create a Pull Request

License

MIT License - see LICENSE file for details

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

test_impact_analyzer-0.1.2.tar.gz (20.6 kB view details)

Uploaded Source

Built Distribution

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

test_impact_analyzer-0.1.2-py3-none-any.whl (12.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: test_impact_analyzer-0.1.2.tar.gz
  • Upload date:
  • Size: 20.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for test_impact_analyzer-0.1.2.tar.gz
Algorithm Hash digest
SHA256 b32ce4a34cc24767b6ae22f14694c46c481de338ded168bc6cb7bc2a5b4b050f
MD5 c40498c7b9897bae6c4593d371415d50
BLAKE2b-256 132c28e88b216d8e1179571827e02bd80c874a3126d81aa9c864de3dcd23f604

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for test_impact_analyzer-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 c6d23be36e2d5365449d182cac28734652a3636af3b8975a160fb8411f8148bd
MD5 baca40bfe04db7d903f07b9f4e181469
BLAKE2b-256 8c85ece10963df9dc369b5954446c497e58b55150a035fc94eb7d44ba36faae7

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