Home | History | Annotate | Download | only in utils

Lines Matching refs:coverage

22 # Check that the active python has been modified to enable coverage in its
25 'import sitecustomize, sys; sys.exit("coverage" not in dir(sitecustomize))' \
27 printf 1>&2 "error: active python does not appear to enable coverage in its 'sitecustomize.py'\n"
31 # First, remove any existing coverage data files.
32 rm -f tests/.coverage
33 find tests -name .coverage.\* -exec rm {} \;
36 lit -sv --param check-coverage=1 "$@"
39 find tests/* -name .coverage.\* -exec mv {} tests \;
42 (cd tests && python -m coverage combine)
45 (cd tests && python -m coverage report)
49 (cd tests && python -m coverage html)