show stdout/stderr when running tests

This commit is contained in:
Damien Elmes 2020-01-08 15:52:51 +10:00
parent 29e476f482
commit 83f0e15213
2 changed files with 2 additions and 2 deletions

View file

@ -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)

View file

@ -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)