We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45b275d commit f20d44eCopy full SHA for f20d44e
bin/test
@@ -3,5 +3,10 @@ set -euo pipefail
3
4
set -x
5
6
-cargo nextest run
7
-cargo nextest run --features attest
+cargo nextest run "${@:---no-fail-fast}"
+
8
+if dmesg 2>/dev/null | grep -i -E "snp|tdx|sev"; then
9
+ cargo nextest run --features attest "${@:---no-fail-fast}"
10
+else
11
+ echo "no attestation hardware found, skipping TEE tests"
12
+fi
0 commit comments