#!/bin/bash
# Create and activate virtual environment
python -m venv venv
source venv/bin/activate
# Set PYTHONPATH
export PYTHONPATH="$PWD/src:$PYTHONPATH"
# Install package in development mode with test dependencies
pip install -e ".[test]"
# Run tests with pytest
pytest src/cortellis_mcp/tests/ -v