File tree Expand file tree Collapse file tree 2 files changed +23
-3
lines changed
Expand file tree Collapse file tree 2 files changed +23
-3
lines changed Original file line number Diff line number Diff line change 1+ name : Tests
2+
3+ on : [push, pull_request]
4+
5+ jobs :
6+ tests :
7+ runs-on : ubuntu-latest
8+
9+ steps :
10+ - uses : actions/checkout@v4
11+
12+ - name : Install uv and set the python version
13+ uses : astral-sh/setup-uv@v5
14+ with :
15+ python-version : " 3.11"
16+ enable-cache : true
17+ cache-dependency-glob : " uv.lock"
18+
19+ - name : Install the project
20+ run : uv sync --all-extras --dev
21+
22+ - name : Run tests
23+ run : uv run pytest
Original file line number Diff line number Diff line change 1414 UnauthorizedException ,
1515 UnprocessableEntityException ,
1616)
17- from .rate_limiter import SimpleRateLimiter , create_rate_limiter
1817
1918__all__ = [
2019 "DatabaseConfig" ,
2524 "UnprocessableEntityException" ,
2625 "DuplicateValueException" ,
2726 "RateLimitException" ,
28- "SimpleRateLimiter" ,
29- "create_rate_limiter" ,
3027 "authenticate_user_by_credentials" ,
3128 "convert_user_to_dict" ,
3229 "get_password_hash" ,
You can’t perform that action at this time.
0 commit comments