From 83f0e15213fd4de0a241f6cdb4c5687653ba36a0 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Wed, 8 Jan 2020 15:52:51 +1000 Subject: [PATCH] show stdout/stderr when running tests --- pylib/Makefile | 2 +- qt/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pylib/Makefile b/pylib/Makefile index 73b0e165e..100ed2d2d 100644 --- a/pylib/Makefile +++ b/pylib/Makefile @@ -54,7 +54,7 @@ CHECKDEPS := $(shell find anki tests -name '*.py' | grep -v buildinfo.py) @touch $@ .build/test: $(CHECKDEPS) - python -m pytest --durations=1 + python -m pytest --durations=1 -s @touch $@ .build/lint: $(CHECKDEPS) diff --git a/qt/Makefile b/qt/Makefile index 1643ed53b..752405f56 100644 --- a/qt/Makefile +++ b/qt/Makefile @@ -74,7 +74,7 @@ CHECKDEPS := $(shell find aqt tests -name '*.py' | grep -v buildinfo.py) @touch $@ .build/test: $(CHECKDEPS) - python -m pytest + python -m pytest -s @touch $@ .build/lint: $(CHECKDEPS)