#!/bin/bash
set -euo pipefail
export RUST_BACKTRACE=1
cargo test --release

if ! command -v pytest ; then
    pip install pytest
fi
pytest functests -vs
