Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,10 @@ jobs:
- name: Install Dependencies
run: uv sync --locked --all-extras

- name: Run Pytest
run: uv run pytest
- name: Run Pytest and Coverage
run: uv run pytest --cov --cov-branch --cov-report=xml

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# fastapi-async-storages

![GitHub branch check runs](https://img.shields.io/github/check-runs/stabldev/fastapi-async-storages/main?style=flat-square)
![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/stabldev/fastapi-async-storages/release.yml?style=flat-square)
![Read the Docs](https://img.shields.io/readthedocs/fastapi-async-storages?style=flat-square)
![Codecov](https://img.shields.io/codecov/c/github/stabldev/fastapi-async-storages?style=flat-square)
![PyPI - Version](https://img.shields.io/pypi/v/fastapi-async-storages?style=flat-square)

A powerful, extensible, and async-ready cloud object storage backend for FastAPI.

> Drop-in, plug-and-play cloud storage for your FastAPI apps; with full async support.\
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ dev = [
"pytest>=8.4.2",
"pytest-aioboto3>=0.6.0",
"pytest-asyncio>=1.2.0",
"pytest-cov>=7.0.0",
"sqlalchemy>=2.0.44",
]

Expand Down
Loading