Files
responder/docs/source/sandbox.md
T
kennethreitz 8f979719a0 Remove poethepoet, use direct commands in CI
Replace all poe task runner usage with direct pytest/sphinx/ruff
commands. Remove poethepoet dependency and [tool.poe.tasks] config.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-22 07:50:32 -04:00

597 B

(sandbox)=

Development Sandbox

Setup

Set up a development sandbox.

Acquire sources and create virtualenv.

git clone https://github.com/kennethreitz/responder.git
cd responder
uv venv

Install project in editable mode, including all development tools.

uv pip install --upgrade --editable '.[develop,docs,release,test]'

Operations

Run tests.

source .venv/bin/activate
pytest

Format code.

ruff format .
ruff check --fix .

Documentation authoring.

sphinx-autobuild --open-browser --watch docs/source docs/source docs/build