Do not show an LLM response when we trigger a code search (#5662) #21716
ci.yml
on: push
fast_tests_matrix_prep
0s
slow_tests_matrix_prep
0s
build
2m 17s
Matrix: test-integration
Matrix: test-unit
Matrix: test-e2e
Annotations
12 errors, 19 warnings, and 3 notices
test-unit (ubuntu, 20)
The v0 series of google-github-actions/auth is no longer maintained. It will not receive updates, improvements, or security patches. Please upgrade to the latest supported versions:
https://github.com/google-github-actions/auth
|
test-unit (ubuntu, 20)
The v0 series of google-github-actions/setup-gcloud is no longer maintained. It will not receive updates, improvements, or security patches. Please upgrade to the latest supported versions:
https://github.com/google-github-actions/setup-gcloud
|
test-unit (ubuntu, 18)
The v0 series of google-github-actions/setup-gcloud is no longer maintained. It will not receive updates, improvements, or security patches. Please upgrade to the latest supported versions:
https://github.com/google-github-actions/setup-gcloud
|
test-unit (ubuntu, 18)
The v0 series of google-github-actions/auth is no longer maintained. It will not receive updates, improvements, or security patches. Please upgrade to the latest supported versions:
https://github.com/google-github-actions/auth
|
test-unit (macos, 20)
The v0 series of google-github-actions/auth is no longer maintained. It will not receive updates, improvements, or security patches. Please upgrade to the latest supported versions:
https://github.com/google-github-actions/auth
|
test-unit (macos, 20)
The v0 series of google-github-actions/setup-gcloud is no longer maintained. It will not receive updates, improvements, or security patches. Please upgrade to the latest supported versions:
https://github.com/google-github-actions/setup-gcloud
|
src/index.test.ts > Agent > Chat > chat/import allows importing a chat transcript from an external source:
agent/src/index.test.ts#L487
AssertionError: expected [ …(5) ] to deeply equal [ …(2) ]
- Expected
+ Received
Array [
Object {
"chatID": "transcript1",
"transcript": Object {
"id": "transcript1",
"interactions": Array [
Object {
"assistantMessage": Object {
"speaker": "assistant",
"text": "Hello! How can I assist you today?",
},
"humanMessage": Object {
"speaker": "human",
"text": "Hello, Cody!",
},
},
Object {
"assistantMessage": Object {
"speaker": "assistant",
"text": "Of course! What do you need help with?",
},
"humanMessage": Object {
"speaker": "human",
"text": "Can you help me with my code?",
},
},
],
"lastInteractionTimestamp": "2023-10-01T12:00:00Z",
},
},
Object {
"chatID": "transcript2",
"transcript": Object {
"id": "transcript2",
"interactions": Array [
Object {
"assistantMessage": Object {
"speaker": "assistant",
"text": "Lovely to meet you, Lars.",
},
"humanMessage": Object {
"speaker": "human",
"text": "My name is Lars Monsen.",
},
},
],
"lastInteractionTimestamp": "2023-10-02T08:30:00Z",
},
},
+ Object {
+ "chatID": "1997-08-02T16:04:00.000Z",
+ "transcript": Object {
+ "id": "1997-08-02T16:04:00.000Z",
+ "interactions": Array [
+ Object {
+ "assistantMessage": Object {
+ "model": "anthropic/claude-2.0",
+ "speaker": "assistant",
+ "text": " I'm Claude, an AI assistant created by Anthropic.",
+ },
+ "humanMessage": Object {
+ "contextFiles": Array [],
+ "speaker": "human",
+ "text": "What model are you?",
+ },
+ },
+ ],
+ "lastInteractionTimestamp": "1997-08-02T16:04:00.000Z",
+ },
+ },
+ Object {
+ "chatID": "1997-08-02T16:05:00.000Z",
+ "transcript": Object {
+ "id": "1997-08-02T16:05:00.000Z",
+ "interactions": Array [
+ Object {
+ "assistantMessage": Object {
+ "model": "anthropic/claude-2.0",
+ "speaker": "assistant",
+ "text": " I'm Claude, an AI assistant created by Anthropic.",
+ },
+ "humanMessage": Object {
+ "contextFiles": Array [],
+ "speaker": "human",
+ "text": "What model are you?",
+ },
+ },
+ ],
+ "lastInteractionTimestamp": "1997-08-02T16:05:00.000Z",
+ },
+ },
+ Object {
+ "chatID": "1997-08-02T16:06:00.000Z",
+ "transcript": Object {
+ "id": "1997-08-02T16:06:00.000Z",
+ "interactions": Array [
+ Object {
+ "assistantMessage": Object {
+ "model": "anthropic/claude-2.0",
+ "speaker": "assistant",
+ "text": " I'm Claude, an AI assistant created by Anthropic.",
+ },
+ "humanMessage": Object {
+ "contextFiles": Array [],
+ "speaker": "human",
+ "text": "What model are you?",
+ },
+ },
+ ],
+ "lastInteractionTimestamp": "1997-08-02T16:06:00.000Z",
+ },
+ },
]
❯ src/index.test.ts:487:30
|
src/index.test.ts > Agent > Commands > commands/explain:
agent/src/index.test.ts#L880
Error: Snapshot `Agent > Commands > commands/explain 2` mismatched
❯ src/index.test.ts:880:76
|
test-unit (macos, 20)
Process completed with exit code 1.
|
test-unit (windows, 20)
The v0 series of google-github-actions/auth is no longer maintained. It will not receive updates, improvements, or security patches. Please upgrade to the latest supported versions:
https://github.com/google-github-actions/auth
|
test-unit (windows, 20)
The v0 series of google-github-actions/setup-gcloud is no longer maintained. It will not receive updates, improvements, or security patches. Please upgrade to the latest supported versions:
https://github.com/google-github-actions/setup-gcloud
|
command-commit.test.ts:24:3 › use terminal output as context:
vscode\test\e2e\helpers.ts#L331
1) command-commit.test.ts:24:3 › use terminal output as context ──────────────────────────────────
Error: Failed to rmSync C:\Users\RUNNER~1\AppData\Local\Temp\cody-vsce6tGcfv after 5 attempts: Error: EBUSY: resource busy or locked, unlink '\\?\C:\Users\RUNNER~1\AppData\Local\Temp\cody-vsce6tGcfv\logs\20240923T141924\window1\exthost\extensionTelemetry.log'
at helpers.ts:331
329 | } catch (error) {
330 | if (attempts === 1) {
> 331 | throw new Error(`Failed to rmSync ${path} after ${maxAttempts} attempts: ${error}`)
| ^
332 | }
333 |
334 | await new Promise(resolve => setTimeout(resolve, 100))
at rmSyncWithRetries (D:\a\cody\cody\vscode\test\e2e\helpers.ts:331:23)
at Object.app (D:\a\cody\cody\vscode\test\e2e\helpers.ts:212:13)
|
test-unit (ubuntu, 20)
The following actions use a deprecated Node.js version and will be forced to run on node20: google-github-actions/auth@v0, google-github-actions/setup-gcloud@v0. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
test-unit (ubuntu, 18)
The following actions use a deprecated Node.js version and will be forced to run on node20: google-github-actions/auth@v0, google-github-actions/setup-gcloud@v0. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
test-unit (macos, 20)
The following actions use a deprecated Node.js version and will be forced to run on node20: google-github-actions/auth@v0, google-github-actions/setup-gcloud@v0. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
test-unit (windows, 20)
The following actions use a deprecated Node.js version and will be forced to run on node20: google-github-actions/auth@v0, google-github-actions/setup-gcloud@v0. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Slow Test:
vscode/chat-atFile.test.ts#L1
vscode/chat-atFile.test.ts took 57.1s
|
Slow Test:
vscode/command-custom.test.ts#L1
vscode/command-custom.test.ts took 53.6s
|
Slow Test:
vscode/chat-input.test.ts#L1
vscode/chat-input.test.ts took 40.8s
|
Slow Test:
vscode/initial-context.test.ts#L1
vscode/initial-context.test.ts took 35.3s
|
Slow Test:
vscode/command-core.test.ts#L1
vscode/command-core.test.ts took 30.3s
|
Slow Test:
vscode/chat-atFile.test.ts#L1
vscode/chat-atFile.test.ts took 1.1m
|
Slow Test:
vscode/command-custom.test.ts#L1
vscode/command-custom.test.ts took 1.0m
|
Slow Test:
vscode/chat-input.test.ts#L1
vscode/chat-input.test.ts took 48.4s
|
Slow Test:
vscode/initial-context.test.ts#L1
vscode/initial-context.test.ts took 42.0s
|
Slow Test:
vscode/command-core.test.ts#L1
vscode/command-core.test.ts took 37.5s
|
Slow Test:
vscode\chat-atFile.test.ts#L1
vscode\chat-atFile.test.ts took 1.3m
|
Slow Test:
vscode\command-custom.test.ts#L1
vscode\command-custom.test.ts took 1.1m
|
Slow Test:
vscode\chat-input.test.ts#L1
vscode\chat-input.test.ts took 54.2s
|
Slow Test:
vscode\initial-context.test.ts#L1
vscode\initial-context.test.ts took 48.6s
|
Slow Test:
vscode\command-core.test.ts#L1
vscode\command-core.test.ts took 43.3s
|
🎭 Playwright Run Summary
3 skipped
42 passed (7.1m)
|
🎭 Playwright Run Summary
3 skipped
42 passed (8.4m)
|
🎭 Playwright Run Summary
1 flaky
command-commit.test.ts:24:3 › use terminal output as context ───────────────────────────────────
3 skipped
41 passed (9.9m)
|