Skip to content

Commit 8af0567

Browse files
authored
Merge branch 'master' into delta-sink
2 parents 55bb44a + 27f0f11 commit 8af0567

68 files changed

Lines changed: 3939 additions & 496 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.config/nextest.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,6 @@ threads-required = "num-cpus"
2323

2424
[profile.default]
2525
slow-timeout = { period = "30s", terminate-after = 4 }
26+
27+
[profile.ci]
28+
retries = 3

.github/actions/rust/pre-merge/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ runs:
144144
145145
test_start=$(date +%s)
146146
if command -v cargo-nextest &> /dev/null; then
147-
cargo nextest run --locked --no-fail-fast $PARTITION_FLAG
147+
cargo nextest run --locked --no-fail-fast --profile ci $PARTITION_FLAG
148148
else
149149
if [[ -n "$PARTITION_FLAG" ]]; then
150150
echo "::error::cargo-nextest not found, falling back to cargo test without partitioning (all tests will run on every partition)"

.github/workflows/coverage-baseline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
eval $(echo -n "test" | gnome-keyring-daemon --unlock --components=secrets)
7979
echo -n "warmup" | secret-tool store --label="ci-warmup" ci-test warmup
8080
81-
cargo test --locked --no-fail-fast
81+
cargo nextest run --locked --no-fail-fast --profile ci
8282
shell: bash
8383

8484
- name: Generate coverage report

.typos.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,4 +142,6 @@ extend-exclude = [
142142
"go.work",
143143
# Benchmark dashboard frontend build output
144144
"core/bench/dashboard/frontend/dist",
145+
# WireMock test fixtures with base64-encoded JWT data
146+
"**/wiremock/__files/*.json",
145147
]

0 commit comments

Comments
 (0)