Code Quality Integration¶
This document outlines the code quality tools, processes, and integrations used in the Prompt Decorators project to maintain high standards of code quality.
Overview¶
The Prompt Decorators project employs a comprehensive set of code quality tools and processes to ensure:
- Consistent code style and formatting
- Static type checking
- Comprehensive test coverage
- Documentation quality
- Security scanning
- Continuous integration
Code Quality Tools¶
Linting and Formatting¶
Ruff¶
Ruff is the primary tool for linting and formatting Python code in the project. It replaces multiple tools (black, isort, flake8) with a single, fast tool.
Configuration is in pyproject.toml
:
[tool.ruff]
line-length = 100
target-version = "py311"
select = ["E", "F", "I", "N", "B", "C4", "SIM", "ERA", "PL"]
ignore = ["E203", "E501"]
[tool.ruff.isort]
known-first-party = ["prompt_decorators"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
Usage:
Type Checking¶
Mypy¶
Mypy is used for static type checking to catch type-related errors before runtime.
Configuration is in mypy.ini
:
[mypy]
python_version = 3.11
warn_return_any = True
warn_unused_configs = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
[mypy.plugins.numpy.*]
follow_imports = skip
[mypy-pytest.*]
ignore_missing_imports = True
Usage:
Testing¶
Pytest¶
Pytest is used for unit and integration testing.
Configuration is in pyproject.toml
:
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_functions = "test_*"
python_classes = "Test*"
addopts = "--cov=prompt_decorators --cov-report=term --cov-report=xml"
Usage:
Coverage¶
Coverage.py is used to measure test coverage.
Configuration is in .coveragerc
:
[run]
source = prompt_decorators
omit = tests/*
[report]
exclude_lines =
pragma: no cover
def __repr__
raise NotImplementedError
Documentation Quality¶
Doc8¶
Doc8 is used to check documentation quality.
Configuration is in pyproject.toml
:
Usage:
Security Scanning¶
Bandit¶
Bandit is used for security vulnerability scanning.
Configuration is in .bandit
:
Usage:
Pre-commit Integration¶
The project uses pre-commit to run quality checks before each commit.
Configuration is in .pre-commit-config.yaml
:
repos:
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.0.262
hooks:
- id: ruff
args: [--fix]
- id: ruff-format
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.3.0
hooks:
- id: mypy
additional_dependencies: [types-requests, types-PyYAML]
- repo: https://github.com/PyCQA/bandit
rev: 1.7.5
hooks:
- id: bandit
args: [-c, .bandit]
exclude: tests/
- repo: https://github.com/pycqa/doc8
rev: v1.1.1
hooks:
- id: doc8
args: [--max-line-length=100]
Installation:
Usage:
# Run on all files
pre-commit run --all-files
# Run automatically on commit
git commit -m "Your commit message"
Continuous Integration¶
GitHub Actions¶
The project uses GitHub Actions for continuous integration.
Test Workflow¶
The test workflow runs tests on Python 3.11:
name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Lint Workflow¶
The lint workflow checks code style and typing:
name: Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff mypy
pip install -e ".[dev]"
- name: Lint with ruff
run: |
ruff check .
- name: Check formatting with ruff
run: |
ruff format --check .
- name: Type check with mypy
run: |
mypy prompt_decorators
Docs Workflow¶
The docs workflow builds and validates documentation:
name: Docs
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[docs]"
- name: Build docs
run: |
cd docs
mkdocs build --strict
- name: Check documentation quality
run: |
doc8 docs/
Code Quality Metrics¶
Coverage Reporting¶
The project uses Codecov for coverage reporting.
Integration is through GitHub Actions:
Code Quality Badges¶
The project includes badges in the README.md to show code quality metrics:
[](https://github.com/synaptiai/prompt-decorators/actions/workflows/tests.yml)
[](https://codecov.io/gh/synaptiai/prompt-decorators)
[](https://github.com/synaptiai/prompt-decorators/actions/workflows/docs.yml)
Pull Request Quality Checks¶
Pull requests must pass all quality checks before merging:
- All tests must pass
- Code must be properly formatted
- Type checking must pass
- Documentation must build successfully
- Test coverage must not decrease
GitHub branch protection rules enforce these requirements.
Developer Workflow¶
Local Quality Checks¶
Developers should run quality checks locally before pushing:
# Format code
ruff format .
# Check code
ruff check .
# Run type checking
mypy prompt_decorators
# Run tests
pytest
# Build docs
cd docs && mkdocs build
CI/CD Pipeline¶
The CI/CD pipeline follows these steps:
- Lint: Check code style and formatting
- Type Check: Verify type annotations
- Test: Run unit and integration tests
- Coverage: Generate coverage reports
- Docs: Build and validate documentation
- Security: Scan for security vulnerabilities
- Release: (On main branch) Build and publish package
Setting Up Quality Tools¶
For New Contributors¶
New contributors should set up the quality tools:
# Clone the repository
git clone https://github.com/synaptiai/prompt-decorators.git
cd prompt-decorators
# Install dependencies
pip install -e ".[dev,test,docs]"
# Install pre-commit hooks
pre-commit install
For CI/CD Systems¶
CI/CD systems should install the necessary dependencies:
Best Practices¶
Code Style¶
- Follow PEP 8 style guidelines
- Use consistent naming conventions
- Keep functions and methods focused and small
- Use descriptive variable names
Type Annotations¶
- Use type annotations for all functions and methods
- Use
Optional[T]
for parameters that could beNone
- Use
Union[T1, T2]
for parameters that could be multiple types - Use
Any
only when absolutely necessary
Testing¶
- Write tests for all new features and bug fixes
- Include both positive and negative test cases
- Test edge cases and error conditions
- Aim for high test coverage (>90%)
Documentation¶
- Document all public APIs
- Keep documentation up to date with code changes
- Include examples in documentation
- Use clear, concise language
Conclusion¶
The Prompt Decorators project maintains high code quality through a combination of automated tools, continuous integration, and developer best practices. By following these guidelines, contributors can help ensure the project remains maintainable, reliable, and secure.