Skip to content

Commit 323135e

Browse files
committed
fixup
1 parent 1bb84db commit 323135e

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/lint-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
run: go test -v -skip 'TestStateOperationsWithinThreshold' -race ./...
4444

4545
- name: generate coverage
46-
run: go test -coverprofile=coverage.out -covermode=atomic $(go list ./... | grep -v '/ci')
46+
run: go test -skip 'TestStateOperationsWithinThreshold' -coverprofile=coverage.out -covermode=atomic $(go list ./... | grep -v '/ci')
4747

4848
- name: upload coverage to codecov
4949
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5

.github/workflows/stress-test.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ jobs:
2727
echo "Testing state reconciliation performance at various scales:" >> stress_results.md
2828
echo "" >> stress_results.md
2929
echo '```' >> stress_results.md
30-
cat stress_output.log >> stress_results.md
30+
# Strip ANSI color codes and append to results
31+
sed 's/\x1b\[[0-9;]*m//g' stress_output.log >> stress_results.md
3132
echo '```' >> stress_results.md
3233
3334
- name: Comment PR with stress test results

0 commit comments

Comments
 (0)