Compare commits

..

No commits in common. "1012947b6721e16398248a54bc516974271e5b5d" and "c452c6c0d5421e337bc0628c6b20a03a3ea70147" have entirely different histories.

2 changed files with 1 additions and 2 deletions

View file

@ -8,7 +8,6 @@ on:
jobs:
lint_and_test:
runs-on: docker
continue-on-error: true
container:
image: ghcr.io/astral-sh/uv:alpine
steps:
@ -19,7 +18,6 @@ jobs:
- run: uv python install # Gets Python version from pyproject.toml
- run: uv sync
- run: uv run ruff check
- run: uv run ruff format
- run: uv run pytest test
env:
ENVIRONMENT: testing

View file

@ -15,6 +15,7 @@ from src.user.schemas import UserResponse, OIDCClaims
from src.user.dependencies import (
user_model_claims_dependency,
user_model_query_dependency,
user_model_body_dependency,
)
from src.auth.dependencies import super_admin_dependency