chore[deps]: upgrade dependencies with uv lock --upgrade (#5358)

* chore: upgrade dependencies with `uv lock --upgrade`

* linting

* upgrade PR title

---------

Co-authored-by: sydney-runkle <54324534+sydney-runkle@users.noreply.github.com>
Co-authored-by: Sydney Runkle <sydneymarierunkle@gmail.com>
This commit is contained in:
github-actions[bot]
2025-07-07 23:24:32 +00:00
committed by GitHub
co-authored by sydney-runkle Sydney Runkle
parent 4c73b176ff
commit 87f2e69395
18 changed files with 1486 additions and 1282 deletions
+6 -6
View File
@@ -280,9 +280,9 @@ def test_version_option() -> None:
assert result.exit_code == 0, "Expected exit code 0 for --version option"
# Check that the output contains the correct version information
assert (
"LangGraph CLI, version" in result.output
), "Expected version information in output"
assert "LangGraph CLI, version" in result.output, (
"Expected version information in output"
)
def test_dockerfile_command_basic() -> None:
@@ -570,6 +570,6 @@ def test_build_generate_proper_build_context():
build_context_pattern = re.compile(r"--build-context\s+(\w+)=([^\s]+)")
build_contexts = re.findall(build_context_pattern, result.output)
assert (
len(build_contexts) == 2
), f"Expected 2 build contexts, but found {len(build_contexts)}"
assert len(build_contexts) == 2, (
f"Expected 2 build contexts, but found {len(build_contexts)}"
)
@@ -42,18 +42,18 @@ def test_create_new_with_mocked_download(mock_urlopen: MagicMock) -> None:
# Verify CLI command execution and success
assert result.exit_code == 0, result.output
assert (
"New project created" in result.output
), "Expected success message in output."
assert "New project created" in result.output, (
"Expected success message in output."
)
# Verify that the directory is not empty
assert os.listdir(temp_dir), "Expected files to be created in temp directory."
# Check for a known file in the extracted content
extracted_files = [f.name for f in Path(temp_dir).glob("*")]
assert (
"test-file.txt" in extracted_files
), "Expected 'test-file.txt' in the extracted content."
assert "test-file.txt" in extracted_files, (
"Expected 'test-file.txt' in the extracted content."
)
def test_invalid_template_id() -> None:
@@ -65,6 +65,6 @@ def test_invalid_template_id() -> None:
# Verify the command failed and proper message is displayed
assert result.exit_code != 0, "Expected non-zero exit code for invalid template."
assert (
"Template 'invalid-template-id' not found" in result.output
), "Expected error message in output."
assert "Template 'invalid-template-id' not found" in result.output, (
"Expected error message in output."
)