Skip to content

Unify non-Azure CLI E2E helpers and stabilize localhive#16131

Merged
davidfowl merged 3 commits intomainfrom
davidfowl/unify-e2e-helpers
Apr 18, 2026
Merged

Unify non-Azure CLI E2E helpers and stabilize localhive#16131
davidfowl merged 3 commits intomainfrom
davidfowl/unify-e2e-helpers

Conversation

@davidfowl
Copy link
Copy Markdown
Contributor

@davidfowl davidfowl commented Apr 13, 2026

Description

This draft consolidates the non-Azure CLI E2E helper migration with the localhive reliability fixes that fell out of validating real bundle-backed scenarios.

  • Unifies the non-Azure Docker, Kubernetes, JavaScript publish, and Podman CLI E2E suites around CliInstallStrategy and the shared terminal/install helpers.
  • Runs the Podman deployment scenario inside a privileged Docker helper container so the test no longer depends on host Podman state.
  • Fixes localhive template installation from flat local sources by resolving the exact local .nupkg path, improves process output draining with an idle-based forwarder wait, and filters AppleDouble ._* package artifacts from localhive archives on macOS.
  • Preserves the improved failure diagnostics for local and CI runs by capturing Aspire logs and workspace artifacts into preserved workspaces without changing product socket-path behavior.

Validation:

  • dotnet test tests/Aspire.Cli.Tests/Aspire.Cli.Tests.csproj -- --filter-not-trait "quarantined=true" --filter-not-trait "outerloop=true"
  • dotnet test tests/Aspire.Cli.Tests/Aspire.Cli.Tests.csproj -- --filter-method "*.WaitForExitAsync_AllowsForwardersToDrainBeforeClosingStreams" --filter-method "*.SdkDumpCi_ForHostingProject_DoesNotEmitWarnings" --filter-not-trait "quarantined=true" --filter-not-trait "outerloop=true"
  • ASPIRE_E2E_ARCHIVE=/tmp/aspire-stop-arm64-695e.tar.gz dotnet test tests/Aspire.Cli.EndToEnd.Tests/Aspire.Cli.EndToEnd.Tests.csproj -- --filter-method "*.DeployK8sBasicApiService" --filter-method "*.DeployTypeScriptAppToKubernetes" --filter-method "*.CreateAndDeployToDockerComposeWithPodman" --filter-not-trait "quarantined=true"

Fixes # (issue)

Checklist

  • Is this feature complete?
    • Yes. Ready to ship.
    • No. Follow-up changes expected.
  • Are you including unit tests for the changes and scenario tests if relevant?
    • Yes
    • No
  • Did you add public API?
    • Yes
      • If yes, did you have an API Review for it?
        • Yes
        • No
      • Did you add <remarks /> and <code /> elements on your triple slash comments?
        • Yes
        • No
    • No
  • Does the change make any security assumptions or guarantees?
    • Yes
      • If yes, have you done a threat model and had a security review?
        • Yes
        • No
    • No
  • Does the change require an update in our Aspire docs?

@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Apr 13, 2026

🚀 Dogfood this PR with:

⚠️ WARNING: Do not do this without first carefully reviewing the code of this PR to satisfy yourself it is safe.

curl -fsSL https://raw.githubusercontent.com/microsoft/aspire/main/eng/scripts/get-aspire-cli-pr.sh | bash -s -- 16131

Or

  • Run remotely in PowerShell:
iex "& { $(irm https://raw.githubusercontent.com/microsoft/aspire/main/eng/scripts/get-aspire-cli-pr.ps1) } 16131"

@eerhardt
Copy link
Copy Markdown
Member

Let's make sure the deployment end to end tests don't regress. Right now we are down to 4 failing tests. 3 I hope will be fixed by #16125 and AcaCompactNamingUpgradeDeploymentTests, which I don't know why fails yet.

image

@davidfowl davidfowl force-pushed the davidfowl/unify-e2e-helpers branch from 8d78862 to 887df3f Compare April 14, 2026 01:30
Comment thread src/Aspire.ProjectTemplates/Aspire.ProjectTemplates.csproj Outdated
Comment thread src/Aspire.ProjectTemplates/Aspire.ProjectTemplates.csproj
Comment thread src/Aspire.Cli/Backchannel/AuxiliaryBackchannelMonitor.cs Outdated
Comment thread src/Shared/BackchannelConstants.cs Outdated
Comment thread src/Shared/BackchannelConstants.cs Outdated
Comment thread src/Shared/BackchannelConstants.cs Outdated
@davidfowl davidfowl changed the title Unify CLI E2E install strategy and stabilize localhive Unify CLI E2E helpers and stabilize localhive Apr 14, 2026
@davidfowl davidfowl changed the title Unify CLI E2E helpers and stabilize localhive Unify non-Azure CLI E2E helpers and stabilize localhive Apr 14, 2026
@davidfowl davidfowl force-pushed the davidfowl/unify-e2e-helpers branch 5 times, most recently from 5e54f1e to 91670f6 Compare April 16, 2026 05:31
@github-actions
Copy link
Copy Markdown
Contributor

Re-running the failed jobs in the CI workflow for this pull request because 1 job was identified as retry-safe transient failures in the CI run attempt.
GitHub was asked to rerun all failed jobs for that attempt, and the rerun is being tracked in the rerun attempt.
The job links below point to the failed attempt jobs that matched the retry-safe transient failure rules.

@davidfowl davidfowl force-pushed the davidfowl/unify-e2e-helpers branch from 490eaa3 to a84da5b Compare April 16, 2026 23:55
@davidfowl davidfowl marked this pull request as ready for review April 17, 2026 00:27
Copilot AI review requested due to automatic review settings April 17, 2026 00:27
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR consolidates CLI E2E test infrastructure around CliInstallStrategy, improves localhive/local package resolution behavior, and hardens E2E diagnostics/capture so failures are easier to debug across local and CI runs.

Changes:

  • Unified Docker-based E2E suites to use CliInstallStrategy + shared automator helpers (including more robust aspire add handling and improved diagnostics capture).
  • Stabilized localhive/local package flows by pinning versions from local hive contents and resolving exact local .nupkg paths for dotnet new install.
  • Improved process output draining behavior and added regression tests for stream forwarder drain/idle scenarios.
Show a summary per file
File Description
tests/Shared/TemporaryRepo.cs Adds workspace preservation tracking for failed E2E runs.
tests/Shared/Hex1bTestHelpers.cs Updates local recording output location docs/paths.
tests/Shared/Docker/Dockerfile.e2e-podman New privileged container image for Podman-in-Docker E2E runs.
tests/Shared/Docker/Dockerfile.e2e Installs docker buildx/compose plugins for publish/deploy flows.
tests/Aspire.Cli.Tests/Utils/AppHostHelperTests.cs Adds version-compatibility test coverage for AppHost checks.
tests/Aspire.Cli.Tests/Packaging/PackagingServiceTests.cs Adds coverage for local hive pinned-version behavior and synthetic template package results.
tests/Aspire.Cli.Tests/DotNet/ProcessExecutionTests.cs New tests validating forwarder drain behavior around process exit/idle periods.
tests/Aspire.Cli.Tests/DotNet/DotNetCliRunnerTests.cs Verifies local folder sources resolve to a concrete .nupkg path for template install.
tests/Aspire.Cli.EndToEnd.Tests/WaitCommandTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/TypeScriptStarterTemplateTests.cs Enables workspace capture on failure.
tests/Aspire.Cli.EndToEnd.Tests/TypeScriptSqlServerNativeAssetsBundleTests.cs Uses CliInstallStrategy and simplifies local channel handling.
tests/Aspire.Cli.EndToEnd.Tests/TypeScriptReusablePackageTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/TypeScriptPublishTests.cs Migrates to CliInstallStrategy; updates GA-vs-PR skip logic.
tests/Aspire.Cli.EndToEnd.Tests/TypeScriptPolyglotTests.cs Migrates to CliInstallStrategy and removes legacy mode branching.
tests/Aspire.Cli.EndToEnd.Tests/TypeScriptEmptyAppHostTemplateTests.cs Migrates to CliInstallStrategy; enables workspace capture on failure.
tests/Aspire.Cli.EndToEnd.Tests/TypeScriptCodegenValidationTests.cs Removes local helper terminal logic; standardizes on CliInstallStrategy.
tests/Aspire.Cli.EndToEnd.Tests/StopNonInteractiveTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/StartStopTests.cs Adds explicit wait for “AppHost stopped” success text.
tests/Aspire.Cli.EndToEnd.Tests/StagingChannelTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/SmokeTests.cs Enables workspace capture on failure.
tests/Aspire.Cli.EndToEnd.Tests/SecretTypeScriptAppHostTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/SecretDotNetAppHostTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/PythonReactTemplateTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/PsCommandTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/ProjectReferenceTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/PodmanDeploymentTests.cs Runs Podman scenario in privileged helper container; updates validation curl.
tests/Aspire.Cli.EndToEnd.Tests/PlaywrightCliInstallTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/OtelLogsTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/NewWithAgentInitTests.cs Migrates Docker E2E to CliInstallStrategy; removes a prompt step.
tests/Aspire.Cli.EndToEnd.Tests/LogsCommandTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/LocalConfigMigrationTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/ListStepsTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/KubernetesPublishTests.cs Moves Kubernetes E2E into Docker terminal + CliInstallStrategy.
tests/Aspire.Cli.EndToEnd.Tests/KubernetesDeployWithValkeyTests.cs Migrates Kubernetes E2E to Docker terminal + CliInstallStrategy.
tests/Aspire.Cli.EndToEnd.Tests/KubernetesDeployWithSqlServerTests.cs Migrates Kubernetes E2E to Docker terminal + CliInstallStrategy.
tests/Aspire.Cli.EndToEnd.Tests/KubernetesDeployWithRedisTests.cs Migrates Kubernetes E2E to Docker terminal + CliInstallStrategy.
tests/Aspire.Cli.EndToEnd.Tests/KubernetesDeployWithRabbitMQTests.cs Migrates Kubernetes E2E to Docker terminal + CliInstallStrategy.
tests/Aspire.Cli.EndToEnd.Tests/KubernetesDeployWithPostgresTests.cs Migrates Kubernetes E2E to Docker terminal + CliInstallStrategy.
tests/Aspire.Cli.EndToEnd.Tests/KubernetesDeployWithNatsTests.cs Migrates Kubernetes E2E to Docker terminal + CliInstallStrategy.
tests/Aspire.Cli.EndToEnd.Tests/KubernetesDeployWithMySqlTests.cs Migrates Kubernetes E2E to Docker terminal + CliInstallStrategy.
tests/Aspire.Cli.EndToEnd.Tests/KubernetesDeployWithMongoDBTests.cs Migrates Kubernetes E2E to Docker terminal + CliInstallStrategy.
tests/Aspire.Cli.EndToEnd.Tests/KubernetesDeployWithGarnetTests.cs Migrates Kubernetes E2E to Docker terminal + CliInstallStrategy.
tests/Aspire.Cli.EndToEnd.Tests/KubernetesDeployTypeScriptTests.cs Migrates Kubernetes E2E to Docker terminal + CliInstallStrategy.
tests/Aspire.Cli.EndToEnd.Tests/KubernetesDeployBasicApiServiceTests.cs Migrates Kubernetes E2E to Docker terminal + CliInstallStrategy.
tests/Aspire.Cli.EndToEnd.Tests/JsReactTemplateTests.cs Enables workspace capture on failure; migrates to CliInstallStrategy.
tests/Aspire.Cli.EndToEnd.Tests/JavaScriptPublishTests.cs Migrates JS publish E2E into Docker terminal + CliInstallStrategy.
tests/Aspire.Cli.EndToEnd.Tests/JavaPolyglotTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/JavaEmptyAppHostTemplateTests.cs Enables workspace capture on failure; migrates to CliInstallStrategy.
tests/Aspire.Cli.EndToEnd.Tests/JavaCodegenValidationTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/Helpers/KubernetesDeployTestHelpers.cs Improves tool download validation + kind kubeconfig internal endpoint for container runs; standardizes aspire add completion.
tests/Aspire.Cli.EndToEnd.Tests/Helpers/CliInstallStrategyTests.cs Adds tests for PR-install args and workflow-run-id propagation.
tests/Aspire.Cli.EndToEnd.Tests/Helpers/CliInstallStrategy.cs Propagates optional workflow run id to container env for PR installs.
tests/Aspire.Cli.EndToEnd.Tests/Helpers/CliE2ETestHelpers.cs Adds workflow-run-id parsing, capture-file support, Podman terminal builder, and capture helpers returning paths.
tests/Aspire.Cli.EndToEnd.Tests/Helpers/CliE2EAutomatorHelpers.cs Refactors install flows, makes aspire add tolerant to version prompt, improves diagnostics capture and aspire start failure handling.
tests/Aspire.Cli.EndToEnd.Tests/Helpers/CaptureWorkspaceOnFailureAttribute.cs Adds file capture support; prints local capture locations; toggles local workspace preservation behavior.
tests/Aspire.Cli.EndToEnd.Tests/Fixtures/JsPublish/verify.sh Adds published-host resolution + wait helpers for more reliable HTTP verification.
tests/Aspire.Cli.EndToEnd.Tests/EmptyAppHostTemplateTests.cs Enables workspace capture on failure; migrates to CliInstallStrategy.
tests/Aspire.Cli.EndToEnd.Tests/DoctorCommandTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/DockerDeploymentTests.cs Runs deployment E2E inside Docker terminal + CliInstallStrategy; improves service reachability verification.
tests/Aspire.Cli.EndToEnd.Tests/DescribeCommandTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/DashboardOtelTracesTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/ConfigMigrationTests.cs Migrates migration E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/ConfigHealingTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/ConfigDiscoveryTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/CertificatesCommandTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/CentralPackageManagementTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/BundleSmokeTests.cs Enables workspace capture on failure; switches to shared AspireStartAsync/AspireStopAsync.
tests/Aspire.Cli.EndToEnd.Tests/BannerTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
tests/Aspire.Cli.EndToEnd.Tests/AgentCommandTests.cs Migrates Docker E2E to CliInstallStrategy install flow.
src/Shared/BackchannelConstants.cs Removes trailing whitespace (formatting-only).
src/Aspire.ProjectTemplates/Aspire.ProjectTemplates.csproj Removes a comment line in the templates version replacement target.
src/Aspire.Cli/Packaging/PackagingService.cs Pins local-hive channels based on highest local package semver.
src/Aspire.Cli/DotNet/ProcessExecution.cs Adds idle-based forwarder drain before closing streams to avoid truncating tail output.
src/Aspire.Cli/DotNet/DotNetCliRunner.cs Resolves local template .nupkg paths and avoids --force duplicates by uninstall+reinstall.
localhive.sh Filters AppleDouble artifacts and disables macOS metadata in tar; improves copy counts/logging.
.github/workflows/run-tests.yml Passes workflow run id into tests to enable deterministic PR artifact resolution.
.github/skills/cli-e2e-testing/SKILL.md Updates local recording location documentation.

Copilot's findings

  • Files reviewed: 77/77 changed files
  • Comments generated: 2

Comment thread tests/Shared/TemporaryRepo.cs
Copy link
Copy Markdown
Member

@JamesNK JamesNK left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed the full PR (77 files). Found 2 issues worth flagging — 1 potential container leak in the new Podman test terminal helper, and 1 unconditional assertion that would break local runs of the Docker deployment tests.

Comment thread tests/Aspire.Cli.EndToEnd.Tests/Helpers/CliE2ETestHelpers.cs
Comment thread tests/Aspire.Cli.EndToEnd.Tests/DockerDeploymentTests.cs
@davidfowl davidfowl force-pushed the davidfowl/unify-e2e-helpers branch from 97b4695 to 39ba86f Compare April 17, 2026 16:44
Comment thread tests/Shared/TemporaryRepo.cs
- unify the shared non-Azure CLI E2E install helpers around CliInstallStrategy
- keep the ProcessExecution timing stabilization
- migrate the remaining CLI E2E suites onto the shared helper flow

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
davidfowl and others added 2 commits April 17, 2026 19:09
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
@davidfowl davidfowl force-pushed the davidfowl/unify-e2e-helpers branch from 39ba86f to ec7ad10 Compare April 18, 2026 02:10
@github-actions
Copy link
Copy Markdown
Contributor

Re-running the failed jobs in the CI workflow for this pull request because 1 job was identified as retry-safe transient failures in the CI run attempt.
GitHub was asked to rerun all failed jobs for that attempt, and the rerun is being tracked in the rerun attempt.
The job links below point to the failed attempt jobs that matched the retry-safe transient failure rules.

@github-actions
Copy link
Copy Markdown
Contributor

🎬 CLI E2E Test Recordings — 72 recordings uploaded (commit ec7ad10)

View recordings
Test Recording
AddPackageInteractiveWhileAppHostRunningDetached ▶️ View Recording
AddPackageWhileAppHostRunningDetached ▶️ View Recording
AgentCommands_AllHelpOutputs_AreCorrect ▶️ View Recording
AgentInitCommand_DefaultSelection_InstallsSkillOnly ▶️ View Recording
AgentInitCommand_MigratesDeprecatedConfig ▶️ View Recording
AspireAddPackageVersionToDirectoryPackagesProps ▶️ View Recording
AspireUpdateRemovesAppHostPackageVersionFromDirectoryPackagesProps ▶️ View Recording
Banner_DisplayedOnFirstRun ▶️ View Recording
Banner_DisplayedWithExplicitFlag ▶️ View Recording
Banner_NotDisplayedWithNoLogoFlag ▶️ View Recording
CertificatesClean_RemovesCertificates ▶️ View Recording
CertificatesTrust_WithNoCert_CreatesAndTrustsCertificate ▶️ View Recording
CertificatesTrust_WithUntrustedCert_TrustsCertificate ▶️ View Recording
ConfigSetGet_CreatesNestedJsonFormat ▶️ View Recording
CreateAndRunAspireStarterProject ▶️ View Recording
CreateAndRunAspireStarterProjectWithBundle ▶️ View Recording
CreateAndRunEmptyAppHostProject ▶️ View Recording
CreateAndRunJavaEmptyAppHostProject ▶️ View Recording
CreateAndRunJsReactProject ▶️ View Recording
CreateAndRunPythonReactProject ▶️ View Recording
CreateAndRunTypeScriptEmptyAppHostProject ▶️ View Recording
CreateAndRunTypeScriptStarterProject ▶️ View Recording
CreateJavaAppHostWithViteApp ▶️ View Recording
CreateTypeScriptAppHostWithViteApp ▶️ View Recording
DashboardRunWithOtelTracesReturnsNoTraces ▶️ View Recording
DeployK8sBasicApiService ▶️ View Recording
DeployK8sWithGarnet ▶️ View Recording
DeployK8sWithMongoDB ▶️ View Recording
DeployK8sWithMySql ▶️ View Recording
DeployK8sWithPostgres ▶️ View Recording
DeployK8sWithRabbitMQ ▶️ View Recording
DeployK8sWithRedis ▶️ View Recording
DeployK8sWithSqlServer ▶️ View Recording
DeployK8sWithValkey ▶️ View Recording
DeployTypeScriptAppToKubernetes ▶️ View Recording
DescribeCommandResolvesReplicaNames ▶️ View Recording
DescribeCommandShowsRunningResources ▶️ View Recording
DetachFormatJsonProducesValidJson ▶️ View Recording
DetachFormatJsonProducesValidJsonWhenRestartingExistingInstance ▶️ View Recording
DoListStepsShowsPipelineSteps ▶️ View Recording
DoctorCommand_DetectsDeprecatedAgentConfig ▶️ View Recording
DoctorCommand_WithSslCertDir_ShowsTrusted ▶️ View Recording
DoctorCommand_WithoutSslCertDir_ShowsPartiallyTrusted ▶️ View Recording
GlobalMigration_HandlesCommentsAndTrailingCommas ▶️ View Recording
GlobalMigration_HandlesMalformedLegacyJson ▶️ View Recording
GlobalMigration_PreservesAllValueTypes ▶️ View Recording
GlobalMigration_SkipsWhenNewConfigExists ▶️ View Recording
GlobalSettings_MigratedFromLegacyFormat ▶️ View Recording
InitTypeScriptAppHost_AugmentsExistingViteRepoAtRoot ▶️ View Recording
InvalidAppHostPathWithComments_IsHealedOnRun ▶️ View Recording
LegacySettingsMigration_AdjustsRelativeAppHostPath ▶️ View Recording
LogsCommandShowsResourceLogs ▶️ View Recording
OtelLogsReturnsStructuredLogsFromStarterApp ▶️ View Recording
PsCommandListsRunningAppHost ▶️ View Recording
PsFormatJsonOutputsOnlyJsonToStdout ▶️ View Recording
PublishWithConfigureEnvFileUpdatesEnvOutput ▶️ View Recording
PublishWithDockerComposeServiceCallbackSucceeds ▶️ View Recording
PublishWithoutOutputPathUsesAppHostDirectoryDefault ▶️ View Recording
RestoreGeneratesSdkFiles ▶️ View Recording
RestoreRefreshesGeneratedSdkAfterAddingIntegration ▶️ View Recording
RestoreSupportsConfigOnlyHelperPackageAndCrossPackageTypes ▶️ View Recording
RunFromParentDirectory_UsesExistingConfigNearAppHost ▶️ View Recording
SecretCrudOnDotNetAppHost ▶️ View Recording
SecretCrudOnTypeScriptAppHost ▶️ View Recording
StagingChannel_ConfigureAndVerifySettings_ThenSwitchChannels ▶️ View Recording
StartAndWaitForTypeScriptSqlServerAppHostWithNativeAssets ▶️ View Recording
StopAllAppHostsFromAppHostDirectory ▶️ View Recording
StopAllAppHostsFromUnrelatedDirectory ▶️ View Recording
StopNonInteractiveMultipleAppHostsShowsError ▶️ View Recording
StopNonInteractiveSingleAppHost ▶️ View Recording
StopWithNoRunningAppHostExitsSuccessfully ▶️ View Recording
UnAwaitedChainsCompileWithAutoResolvePromises ▶️ View Recording

📹 Recordings uploaded automatically from CI run #24594583887

@davidfowl davidfowl merged commit 83641ed into main Apr 18, 2026
577 of 581 checks passed
@github-actions github-actions bot added this to the 13.3 milestone Apr 18, 2026
radical pushed a commit to radical/aspire that referenced this pull request Apr 18, 2026
)

* Unify non-Azure CLI E2E helpers and stabilize localhive

- unify the shared non-Azure CLI E2E install helpers around CliInstallStrategy
- keep the ProcessExecution timing stabilization
- migrate the remaining CLI E2E suites onto the shared helper flow

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Fix remaining PR review feedback

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Share TemporaryWorkspace delete path

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants