Browse Source

test: use `nextest` for running tests if present

Signed-off-by: Eliza Weisman <eliza@buoyant.io>
Eliza Weisman 3 years ago
parent
commit
bcdecc0281
2 changed files with 11 additions and 1 deletions
  1. 3 0
      .config/nextest.toml
  2. 8 1
      bin/loom

+ 3 - 0
.config/nextest.toml

@@ -0,0 +1,3 @@
+[profile.loom]
+# loom tests might take a long time; don't have `nextest` print "slow" messages.
+slow-timeout = "10m"

+ 8 - 1
bin/loom

@@ -2,10 +2,17 @@
 
 set -x
 
+TESTCMD=(test)
+
+# if cargo nextest is installed, use it instead!
+if cargo list | grep -q "nextest"; then
+    TESTCMD=(nextest run --cargo-profile loom)
+fi
+
 RUSTFLAGS="--cfg loom ${RUSTFLAGS}" \
 LOOM_LOG="${LOOM_LOG:-info}" \
 LOOM_MAX_PREEMPTIONS="${LOOM_MAX_PREEMPTIONS:-2}" \
-cargo test \
+cargo ${TESTCMD[@]} \
     --profile loom \
     --lib \
     "$@"