view test.sh @ 82:27fb2e50dad2 draft

Only run coverage in test.sh; it is enough
author Lewin Bormann <lbo@spheniscida.de>
date Sat, 25 May 2019 23:48:44 +0200
parents 7532e67d2b2d
children fd075f0104b2
line wrap: on
line source

#!/bin/bash

set -e

export PYTHONPATH=.

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

coverage html