1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00
ZoKrates/integration_test.sh
2022-04-06 11:35:07 +02:00

10 lines
No EOL
262 B
Bash
Executable file

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