Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
2e25dc9
Fix auth tests
jordanrfrazier Sep 11, 2025
aa4f334
[autofix.ci] apply automated fixes
autofix-ci[bot] Sep 11, 2025
556d1f2
Modularized lock flow
lucaseduoli Sep 9, 2025
057eb65
Added more assertions
lucaseduoli Sep 9, 2025
7e46816
t Fixed flow lock test
lucaseduoli Sep 9, 2025
4ecee84
Fixed sticky notes test
lucaseduoli Sep 9, 2025
1e613f2
Removed warning on mcpsidebargroup test
lucaseduoli Sep 9, 2025
c113f5c
fixed warnings on sidebar footer buttons
lucaseduoli Sep 9, 2025
5b77ec6
fixed sidebar footer buttons and test
lucaseduoli Sep 9, 2025
7dddac0
Re-added padding
lucaseduoli Sep 9, 2025
83f7e32
Fixed sidebar segmented nav test
lucaseduoli Sep 9, 2025
25fb268
fixed searchconfigtrigger
lucaseduoli Sep 9, 2025
c065ff0
Fixed sidebar header test
lucaseduoli Sep 9, 2025
2af3b97
fixed sidebar items list test
lucaseduoli Sep 9, 2025
d8d0b65
Fixed flow lock test
lucaseduoli Sep 9, 2025
dc56eca
fixed sticky notes test
lucaseduoli Sep 9, 2025
271320e
Fixed sidebarfooterbuttons test
lucaseduoli Sep 10, 2025
de86641
Revert fix
lucaseduoli Sep 10, 2025
691add8
Fixed test_refresh_starter_projects
lucaseduoli Sep 10, 2025
eace8be
attempt to fix fe merge conflicts
jordanrfrazier Sep 11, 2025
0852e56
[autofix.ci] apply automated fixes
autofix-ci[bot] Sep 11, 2025
ba11de6
lint
jordanrfrazier Sep 11, 2025
78060b0
[autofix.ci] apply automated fixes
autofix-ci[bot] Sep 11, 2025
ca035e7
mypy
jordanrfrazier Sep 11, 2025
f96d4a2
Improve sorting of sender messages
jordanrfrazier Sep 11, 2025
7d7f45b
ruff
jordanrfrazier Sep 11, 2025
0783ab5
starter projects
jordanrfrazier Sep 11, 2025
a48b479
fixed sticky notes merge issue
lucaseduoli Sep 11, 2025
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
Prev Previous commit
Next Next commit
lint
  • Loading branch information
jordanrfrazier committed Sep 11, 2025
commit ba11de662fe4c3bef665476c754b4f6bc6d1ed84
5 changes: 3 additions & 2 deletions src/backend/tests/unit/test_initial_setup.py
Original file line number Diff line number Diff line change
@@ -1,29 +1,30 @@
import asyncio
import os
import tempfile
import uuid
from copy import deepcopy
from datetime import datetime
from unittest.mock import AsyncMock, patch

import pytest
from anyio import Path
from httpx import AsyncClient
from sqlalchemy.orm import selectinload
from sqlmodel import select

from langflow.initial_setup.constants import STARTER_FOLDER_NAME
from langflow.initial_setup.setup import (
detect_github_url,
get_project_data,
load_bundles_from_urls,
load_starter_projects,
update_projects_components_with_latest_component_versions,
)
from langflow.interface.components import get_and_cache_all_types_dict
from langflow.services.auth.utils import create_super_user
from langflow.services.database.models import Flow
from langflow.services.database.models.folder.model import Folder
from langflow.services.deps import get_settings_service, session_scope

Check failure on line 27 in src/backend/tests/unit/test_initial_setup.py

View workflow job for this annotation

GitHub Actions / Ruff Style Check (3.13)

Ruff (I001)

src/backend/tests/unit/test_initial_setup.py:1:1: I001 Import block is un-sorted or un-formatted
from sqlalchemy.orm import selectinload
from sqlmodel import select


async def test_load_starter_projects():
Expand Down
Loading