#!/bin/bash

set -e

BRANCH="$(git symbolic-ref --short HEAD)"
[[ "${BRANCH:-}" = wip-* ]] && exit 0

(set -x; cargo test)
(set -x; cargo test -p doubter-impl)
(set -x; cargo test -p test-doubter)
