Files
Patrick McCarty c90aada56d Run unittests without coverage for now
The `python-extras` bundle dropped the `coverage` command recently, so until
that problem is resolved, run unittests without the coverage analysis.

Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
2021-06-01 16:16:47 -07:00

16 lines
193 B
Bash
Executable File

#!/bin/bash -lx
run_flake8() {
make check
}
run_unittests() {
make unittests-no-coverage
}
if t=$(type -t "$INPUT_TESTFUNC"); then
if [ "$t" = "function" ]; then
$INPUT_TESTFUNC
fi
fi