Skip to content
Open
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
6 changes: 6 additions & 0 deletions cli/azd/test/functional/vs_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,12 @@ func Test_CLI_VsServer(t *testing.T) {
tt := tt
t.Parallel()

// Skip LiveDeploy tests — aspire-full sample pinned to 9.x, CI agent has 13.x.
// See https://github.com/Azure/azure-dev/issues/7739
if strings.HasPrefix(tt.Name, "LiveDeploy") {
t.Skip("Skipping: aspire-full sample needs version bump from 9.x to 13.x (#7739)")
}
Comment thread
rajeshkamal5050 marked this conversation as resolved.

ctx, cancel := newTestContext(t)
defer cancel()

Expand Down
Loading