Browse Source

fix up coverage omit to drop venv installed packages...

irr_shared
John-Mark Gurney 3 years ago
parent
commit
827cb9a62c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Makefile

+ 1
- 1
Makefile View File

@@ -169,7 +169,7 @@ runbuild: $(SRCS)

.PHONY: runtests
runtests: Makefile lora_comms.py lora.py $(LIBLORA_TEST) $(LIBLORA_TEST_SRCS)
ls $(.ALLSRC) | entr sh -c '(cd $(.CURDIR) && $(MAKE) $(.MAKEFLAGS) $(LIBLORA_TEST)) && ((PYTHONPATH="$(.CURDIR)" python -m coverage run -m unittest lora && coverage report --omit=p/\* -m -i) 2>&1 | head -n 30)'
ls $(.ALLSRC) | entr sh -c '(cd $(.CURDIR) && $(MAKE) $(.MAKEFLAGS) $(LIBLORA_TEST)) && ((PYTHONPATH="$(.CURDIR)" python -m coverage run -m unittest lora && coverage report --omit=$(.CURDIR)/p/\* -m -i) 2>&1 | head -n 30)'

# native objects
.SUFFIXES: .no


Loading…
Cancel
Save