Skip to content
Merged
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
3 changes: 0 additions & 3 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ def clean_db(session: Session) -> None:
session.commit()


# Test user fixture
@pytest.fixture()
def test_user(session: Session) -> User:
"""
Expand All @@ -81,7 +80,6 @@ def test_user(session: Session) -> User:
return user


# Unauthenticated client fixture
@pytest.fixture()
def unauth_client(session: Session) -> Generator[TestClient, None, None]:
"""
Expand All @@ -96,7 +94,6 @@ def get_session_override():
app.dependency_overrides.clear()


# Authenticated client fixture
@pytest.fixture()
def auth_client(session: Session, test_user: User) -> Generator[TestClient, None, None]:
"""
Expand Down
Loading