Skip to content

Commit a14a92f

Browse files
thomas-manginclaude
andcommitted
CI: Run encoding tests in single batch instead of for loop
Simplify the functional-testing workflow to run all encoding tests at once rather than iterating through each test individually. This matches how qa/bin/test_everything runs the tests and is more efficient. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 376740a commit a14a92f

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/functional-testing.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,7 @@ jobs:
4545
4646
- name: Functional
4747
run: |
48-
# Get list of all test identifiers and run them sequentially
49-
for test in $(uv run ./qa/bin/functional encoding --short-list); do
50-
echo "Running test: $test"
51-
uv run ./qa/bin/functional encoding "$test"
52-
done
48+
uv run ./qa/bin/functional encoding
5349
5450
- name: Decoding
5551
run: |

0 commit comments

Comments
 (0)