This is an automated email from the ASF dual-hosted git repository.
Jefffrey pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/main by this push:
new 8b0af89a3c chore: configure miri to skip slow tests (#11152)
8b0af89a3c is described below
commit 8b0af89a3ceeb7d302c6e1a0be75a4ed83eec1db
Author: Jeffrey Vo <[email protected]>
AuthorDate: Tue Sep 22 08:47:21 2026 +0900
chore: configure miri to skip slow tests (#11152)
- alternative to https://github.com/apache/arrow-rs/pull/11150
see:
https://nexte.st/docs/integrations/miri/#configuring-nextest-running-under-miri
so we dont need to keep an eye on slow tests and manually add `cfg`'s
each time
---
.config/nextest.toml | 2 ++
.github/workflows/miri.yaml | 1 +
2 files changed, 3 insertions(+)
diff --git a/.config/nextest.toml b/.config/nextest.toml
new file mode 100644
index 0000000000..51d0c97cb8
--- /dev/null
+++ b/.config/nextest.toml
@@ -0,0 +1,2 @@
+[profile.default-miri]
+slow-timeout = { period = "120s", terminate-after = 1, on-timeout = "pass" }
diff --git a/.github/workflows/miri.yaml b/.github/workflows/miri.yaml
index 876ffcdf4e..80a860198c 100644
--- a/.github/workflows/miri.yaml
+++ b/.github/workflows/miri.yaml
@@ -28,6 +28,7 @@ on:
- main
pull_request:
paths:
+ - .config/nextest.toml
- Cargo.toml
- Cargo.lock
- .github/**