#!/usr/bin/env bash
# Run pre-commit hooks

set -o errexit
set -o nounset
set -o pipefail

rm -rf test_data
cargo test

exit 0
