12 lines
218 B
Bash
12 lines
218 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
REPO_DIR=$(git rev-parse --show-toplevel)
|
||
|
|
||
|
if [ "$DO_SCHEMARS_TESTS" = true ]; then
|
||
|
pushd "$REPO_DIR/hashes/extended_tests/schemars" > /dev/null
|
||
|
cargo test
|
||
|
popd > /dev/null
|
||
|
fi
|