13 lines
290 B
Makefile
13 lines
290 B
Makefile
.ONESHELL:
|
|
SHELL = /usr/bin/bash
|
|
MAKEFLAGS += --no-print-directory
|
|
.SILENT:
|
|
|
|
COV3_CMD=venv/bin/coverage
|
|
|
|
|
|
coverage:
|
|
$(COV3_CMD) erase
|
|
$(COV3_CMD) run -a --branch --source=devdi,smart_devices,devices,function smart_brain.py
|
|
$(COV3_CMD) xml -o ../smart_brain_test/testresults/coverage.xml
|