From fa87ee505e0664d83b1cbb321fb7ef397bbdcc8c Mon Sep 17 00:00:00 2001 From: Peter Buchegger Date: Wed, 22 Sep 2021 21:06:11 +0100 Subject: [PATCH] add debug in makefile --- testlib/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/testlib/Makefile b/testlib/Makefile index 65b5081..97583ff 100644 --- a/testlib/Makefile +++ b/testlib/Makefile @@ -1,4 +1,4 @@ -.PHONY: install test +.PHONY: install test debug default: install test @@ -7,3 +7,6 @@ install: test: ESP_PORT=/dev/ttyUSB0 pytest tests -v + +debug: + ESP_PORT=/dev/ttyUSB0 pytest tests -v --capture=tee-sys