1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00
ZoKrates/full_test.sh
2018-10-23 17:28:17 +02:00

10 lines
No EOL
204 B
Bash
Executable file

#!/bin/bash
# Exit if any subcommand fails
set -e
if [ -n "$WITH_LIBSNARK" ]; then
cargo test --release -- --ignored
else
cargo -Z package-features test --release --no-default-features -- --ignored
fi