Move run-test-repeatedly scripts to .github/workflows/fix-flaky-test/#14704
Merged
Conversation
Co-authored-by: radical <1472+radical@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Move run-test-repeatedly scripts to .github/workflows/fix-flaky-test directory
Move run-test-repeatedly scripts to .github/workflows/fix-flaky-test/
Feb 26, 2026
Contributor
|
🚀 Dogfood this PR with:
curl -fsSL https://raw.githubusercontent.com/dotnet/aspire/main/eng/scripts/get-aspire-cli-pr.sh | bash -s -- 14704Or
iex "& { $(irm https://raw.githubusercontent.com/dotnet/aspire/main/eng/scripts/get-aspire-cli-pr.ps1) } 14704" |
sebastienros
approved these changes
Feb 26, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Relocates the run-test-repeatedly helper scripts into .github/workflows/fix-flaky-test/ and updates documentation/help text so the flaky-test tooling is co-located and usage guidance matches the new location.
Changes:
- Moved
run-test-repeatedly.shandrun-test-repeatedly.ps1under.github/workflows/fix-flaky-test/. - Updated script usage/help output to reference the new script paths.
- Updated
.github/skills/fix-flaky-test/SKILL.mdto reference the new script location and invocation examples.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 6 comments.
| File | Description |
|---|---|
| .github/workflows/fix-flaky-test/run-test-repeatedly.sh | Updates usage/examples to reflect the new script location. |
| .github/workflows/fix-flaky-test/run-test-repeatedly.ps1 | Updates usage/examples to reflect the new script location. |
| .github/skills/fix-flaky-test/SKILL.md | Updates documentation and command snippets to point to the relocated scripts. |
Comments suppressed due to low confidence (3)
.github/workflows/fix-flaky-test/run-test-repeatedly.sh:15
- Consider including an explicit current-directory prefix in the printed usage (e.g.,
./.github/workflows/fix-flaky-test/run-test-repeatedly.sh ...) to make copy/paste invocation clearer and consistent with other repo docs/scripts.
.github/workflows/fix-flaky-test/run-test-repeatedly.ps1:21 - PowerShell script invocation examples here use
.github/workflows/.../run-test-repeatedly.ps1without.//.\/&prefix. In PowerShell, relative script execution typically requires an explicit relative path (e.g.,./.github/workflows/fix-flaky-test/run-test-repeatedly.ps1 ...) orpwsh -File ...; otherwise copy/paste often fails due to command resolution rules.
.github/workflows/fix-flaky-test/run-test-repeatedly.ps1:49 - Same as the comment above: the help text prints
Usage: .github/.../run-test-repeatedly.ps1 ...without an explicit relative-path prefix. Consider printing./.github/workflows/fix-flaky-test/run-test-repeatedly.ps1 ...(or suggestingpwsh -File ...) so the usage works when pasted into a PowerShell prompt.
|
|
||
| # Linux/macOS | ||
| ./run-test-repeatedly.sh -n 20 -- \ | ||
| .github/workflows/fix-flaky-test/run-test-repeatedly.sh -n 20 -- \ |
There was a problem hiding this comment.
Same issue as above: consider using ./.github/workflows/fix-flaky-test/run-test-repeatedly.sh ... instead of .github/... for clearer bash invocation from the repo root.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: radical <1472+radical@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Relocates the
run-test-repeatedly.shandrun-test-repeatedly.ps1scripts from the repo root into.github/workflows/fix-flaky-test/to co-locate them with the related flaky test tooling.Description
Changes:
run-test-repeatedly.{sh,ps1}→.github/workflows/fix-flaky-test/.github/skills/fix-flaky-test/SKILL.mdto use the./.github/workflows/fix-flaky-test/run-test-repeatedly.*prefix for copy-paste-friendly invocation from the repo rootChecklist
<remarks />and<code />elements on your triple slash comments?aspire.devissue:✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.