Skip to content

Commit 42fcfc4

Browse files
stephentoubCopilot
andcommitted
Keep ephemeral query coverage disabled
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
1 parent 5e2e99b commit 42fcfc4

6 files changed

Lines changed: 24 additions & 3 deletions

File tree

dotnet/test/E2E/RpcUiEphemeralQueryE2ETests.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ namespace GitHub.Copilot.Test.E2E;
1919
public class RpcUiEphemeralQueryE2ETests(E2ETestFixture fixture, ITestOutputHelper output)
2020
: E2ETestBase(fixture, "rpc_ui_ephemeral_query", output)
2121
{
22-
[Fact]
22+
// TODO(cli-1.0.81-2): CLI 1.0.81-5 still fails session.ui.ephemeralQuery against the
23+
// recorded snapshot on macOS ("Failed to get response from the AI model"). Re-enable
24+
// once the runtime fix ships.
25+
[Fact(Skip = "Blocked on CLI 1.0.81-5 session.ui.ephemeralQuery regression on macOS")]
2326
public async Task Should_Answer_Ephemeral_Query()
2427
{
2528
await using var session = await CreateSessionAsync();

go/internal/e2e/rpc_ui_ephemeral_query_e2e_test.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ func TestRpcUiEphemeralQuery(t *testing.T) {
1414
t.Cleanup(func() { client.ForceStop() })
1515

1616
t.Run("should_answer_ephemeral_query", func(t *testing.T) {
17+
// TODO(cli-1.0.81-2): CLI 1.0.81-5 still fails session.ui.ephemeralQuery against the
18+
// recorded snapshot on macOS ("Failed to get response from the AI model"). Re-enable
19+
// once the runtime fix ships.
20+
t.Skip("blocked on CLI 1.0.81-5 session.ui.ephemeralQuery regression on macOS")
21+
1722
ctx.ConfigureForTest(t)
1823
session := createPortedSession(t, client, nil)
1924
defer session.Disconnect()

nodejs/test/e2e/rpc_ui_ephemeral_query.e2e.test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ import { createSdkTestContext } from "./harness/sdkTestContext.js";
99
describe("UI ephemeral query RPC", async () => {
1010
const { copilotClient: client } = await createSdkTestContext();
1111

12-
it("should answer ephemeral query", { timeout: 120_000 }, async () => {
12+
// TODO(cli-1.0.81-2): CLI 1.0.81-5 still fails session.ui.ephemeralQuery against the
13+
// recorded snapshot on macOS ("Failed to get response from the AI model"). Re-enable
14+
// once the runtime fix ships.
15+
it.skip("should answer ephemeral query", { timeout: 120_000 }, async () => {
1316
const session = await client.createSession({ onPermissionRequest: approveAll });
1417
try {
1518
const result = await session.rpc.ui.ephemeralQuery({

python/e2e/test_rpc_ui_ephemeral_query_e2e.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@
1818

1919

2020
class TestRpcUiEphemeralQuery:
21+
# TODO(cli-1.0.81-2): CLI 1.0.81-5 still fails session.ui.ephemeralQuery against the
22+
# recorded snapshot on macOS ("Failed to get response from the AI model"). Re-enable
23+
# once the runtime fix ships.
24+
@pytest.mark.skip(
25+
reason="blocked on CLI 1.0.81-5 session.ui.ephemeralQuery regression on macOS"
26+
)
2127
async def test_should_answer_ephemeral_query(self, ctx: E2ETestContext):
2228
async with await ctx.client.create_session(
2329
on_permission_request=PermissionHandler.approve_all,

rust/tests/e2e/rpc_ui_ephemeral_query.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
use github_copilot_sdk::rpc::UIEphemeralQueryRequest;
22

3+
// TODO(cli-1.0.81-2): CLI 1.0.81-5 still fails session.ui.ephemeralQuery against the
4+
// recorded snapshot on macOS ("Failed to get response from the AI model"). Re-enable
5+
// once the runtime fix ships.
6+
#[ignore = "blocked on CLI 1.0.81-5 session.ui.ephemeralQuery regression on macOS"]
37
#[tokio::test]
48
async fn should_answer_ephemeral_query() {
59
super::support::with_shared_e2e_context(

test/snapshots/rpc_ui_ephemeral_query/should_answer_ephemeral_query.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
models:
2-
- claude-sonnet-4
2+
- claude-sonnet-4.5
33
conversations:
44
- messages:
55
- role: system

0 commit comments

Comments
 (0)