#!/usr/bin/env bash
#/ Usage: bin/test
#/ Description: Runs all the unit tests for this project
source bin/helpers/_utils.sh
set_source_and_root_dir

ensure_virtual_env

# Pass through all arguments to pytest
pytest "$@"
