Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ feat: implements async client #5

Open
wants to merge 10 commits into
base: devel
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 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
3 changes: 2 additions & 1 deletion .github/workflows/quality-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ jobs:
run: |
uv sync --all-extras --dev
source .venv/bin/activate
uv run pytest tests/
uv run pytest tests/sync_tests --cov
uv run pytest tests/async_tests --cov
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,6 @@ dev = [
"anyio>=4.5.2",
"asyncer>=0.0.8",
"typing-extensions>=4.12.2",
"pytest-asyncio>=0.24.0",
"asyncmock>=0.4.2",
]
1 change: 1 addition & 0 deletions rapyuta_io_sdk_v2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
from rapyuta_io_sdk_v2.client import Client
from rapyuta_io_sdk_v2.config import Configuration
from rapyuta_io_sdk_v2.utils import walk_pages
from rapyuta_io_sdk_v2.async_client import AsyncClient

__version__ = "0.0.1"
Loading