Skip to content

Commit 347e0e4

Browse files
Pause test finder, have it run cargo fmt (block#4958)
1 parent a4bd4c2 commit 347e0e4

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/test-finder.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: Daily Test Coverage Finder
22

33
on:
4-
schedule:
5-
# Run daily at 2 AM UTC
6-
- cron: '0 2 * * *'
4+
# schedule:
5+
# # Run daily at 2 AM UTC - PAUSED
6+
# - cron: '0 2 * * *'
77
workflow_dispatch:
88
inputs:
99
dry_run:
@@ -68,9 +68,10 @@ jobs:
6868
- Fix the test code
6969
- Apply the fix and run the test again
7070
- Repeat up to 3 times until the test passes
71-
6. Once the test passes (or after 3 attempts), save the final changes as a git diff to /tmp/test_addition.patch
72-
7. If successful, write the name of the function you tested to /tmp/function_tested.txt (just the function name, e.g., "check_tool_call" or "MyStruct::my_method")
73-
8. Only create the patch file if the test actually passes
71+
6. Once the test passes, run `cargo fmt` to format all the code properly
72+
7. After formatting, save the final changes as a git diff to /tmp/test_addition.patch
73+
8. If successful, write the name of the function you tested to /tmp/function_tested.txt (just the function name, e.g., "check_tool_call" or "MyStruct::my_method")
74+
9. Only create the patch file if the test actually passes
7475
7576
Important:
7677
- Only add ONE test for ONE function

0 commit comments

Comments
 (0)