8 lines
138 B
Bash
8 lines
138 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
for feature in '' bigint rational complex; do
|
||
|
cargo test --verbose --no-default-features --features="$feature"
|
||
|
done
|