Compare commits
No commits in common. "1012947b6721e16398248a54bc516974271e5b5d" and "c452c6c0d5421e337bc0628c6b20a03a3ea70147" have entirely different histories.
1012947b67
...
c452c6c0d5
2 changed files with 1 additions and 2 deletions
|
|
@ -8,7 +8,6 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
lint_and_test:
|
lint_and_test:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
continue-on-error: true
|
|
||||||
container:
|
container:
|
||||||
image: ghcr.io/astral-sh/uv:alpine
|
image: ghcr.io/astral-sh/uv:alpine
|
||||||
steps:
|
steps:
|
||||||
|
|
@ -19,7 +18,6 @@ jobs:
|
||||||
- run: uv python install # Gets Python version from pyproject.toml
|
- run: uv python install # Gets Python version from pyproject.toml
|
||||||
- run: uv sync
|
- run: uv sync
|
||||||
- run: uv run ruff check
|
- run: uv run ruff check
|
||||||
- run: uv run ruff format
|
|
||||||
- run: uv run pytest test
|
- run: uv run pytest test
|
||||||
env:
|
env:
|
||||||
ENVIRONMENT: testing
|
ENVIRONMENT: testing
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,7 @@ from src.user.schemas import UserResponse, OIDCClaims
|
||||||
from src.user.dependencies import (
|
from src.user.dependencies import (
|
||||||
user_model_claims_dependency,
|
user_model_claims_dependency,
|
||||||
user_model_query_dependency,
|
user_model_query_dependency,
|
||||||
|
user_model_body_dependency,
|
||||||
)
|
)
|
||||||
|
|
||||||
from src.auth.dependencies import super_admin_dependency
|
from src.auth.dependencies import super_admin_dependency
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue