#!/usr/bin/env bash

set -e
set -x

coverage run --source=storix -m pytest
coverage report --show-missing
coverage html --title "${@-coverage}"
xdg-open htmlcov/index.html
