#!/bin/bash

set -e

tox -- -sv

# run only if we are in a pyXX TOXENV
if [ "${TOXENV:0:2}" == "py" ]
then
  coverage combine
  coverage report --show-missing
fi

