view test.sh @ 89:a4832ea66167 draft default tip

More markdown corrections for bitbucket
author Lewin Bormann <lbo@spheniscida.de>
date Sun, 26 May 2019 00:24:28 +0200
parents fd075f0104b2
children
line wrap: on
line source

#!/bin/bash

set -e

export PYTHONPATH=.

if [ -e .coverage ]; then
    rm .coverage
fi

for F in pcombinators/tests/test_*; do
    coverage run --append "${F}"
done

coverage html