From 50db9bbb2762b0841d36515bd1dcc4fab0b072bd Mon Sep 17 00:00:00 2001 From: Simone Scarduzio Date: Tue, 7 Oct 2025 23:18:03 +0200 Subject: [PATCH] readme bump --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index df978e1..5bedf09 100644 --- a/README.md +++ b/README.md @@ -459,7 +459,9 @@ Migrating from `aws s3` to `deltaglider` is as simple as changing the command na - ✅ **S3 compatible**: Works with AWS, MinIO, Cloudflare R2, etc. - ✅ **Atomic operations**: No partial states - ✅ **Concurrent safe**: Multiple clients supported -- ✅ **Well tested**: 95%+ code coverage +- ✅ **Thoroughly tested**: 99 integration/unit tests, comprehensive test coverage +- ✅ **Type safe**: Full mypy type checking, zero type errors +- ✅ **Code quality**: Automated linting with ruff, clean codebase ## Development @@ -471,9 +473,13 @@ cd deltaglider # Install with dev dependencies uv pip install -e ".[dev]" -# Run tests +# Run tests (99 integration/unit tests) uv run pytest +# Run quality checks +uv run ruff check src/ # Linting +uv run mypy src/ # Type checking + # Run with local MinIO docker-compose up -d export AWS_ENDPOINT_URL=http://localhost:9000