1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00
ZoKrates/test.sh

10 lines
242 B
Bash
Executable file

#!/bin/bash
# Exit if any subcommand fails
set -e
if [ -n "$WITH_LIBSNARK" ]; then
cargo -Z package-features test --release --package zokrates_cli --features="libsnark" -- --test-threads=1
else
cargo test --release -- --test-threads=1
fi