Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 618 Bytes

File metadata and controls

39 lines (29 loc) · 618 Bytes

Development Setup

Python Environment

This project requires Python >= 3.9 (tested with 3.9, 3.10, 3.11).

Setup with uv

  1. Create virtual environment with Python 3.11:

    uv venv --python 3.11
  2. Activate the virtual environment:

    source .venv/bin/activate
  3. Install dependencies:

    uv pip install -e ".[dev]"

Running Tests

Run all tests:

pytest

Run specific test:

pytest tests/test_chat_clients.py::TestClientLangChainBaseURL::test_empty_base_url_parameters -v

Run tests with verbose output:

pytest -v