mirror of
https://github.com/ankitects/anki.git
synced 2025-09-25 09:16:38 -04:00
show stdout/stderr when running tests
This commit is contained in:
parent
29e476f482
commit
83f0e15213
2 changed files with 2 additions and 2 deletions
|
@ -54,7 +54,7 @@ CHECKDEPS := $(shell find anki tests -name '*.py' | grep -v buildinfo.py)
|
||||||
@touch $@
|
@touch $@
|
||||||
|
|
||||||
.build/test: $(CHECKDEPS)
|
.build/test: $(CHECKDEPS)
|
||||||
python -m pytest --durations=1
|
python -m pytest --durations=1 -s
|
||||||
@touch $@
|
@touch $@
|
||||||
|
|
||||||
.build/lint: $(CHECKDEPS)
|
.build/lint: $(CHECKDEPS)
|
||||||
|
|
|
@ -74,7 +74,7 @@ CHECKDEPS := $(shell find aqt tests -name '*.py' | grep -v buildinfo.py)
|
||||||
@touch $@
|
@touch $@
|
||||||
|
|
||||||
.build/test: $(CHECKDEPS)
|
.build/test: $(CHECKDEPS)
|
||||||
python -m pytest
|
python -m pytest -s
|
||||||
@touch $@
|
@touch $@
|
||||||
|
|
||||||
.build/lint: $(CHECKDEPS)
|
.build/lint: $(CHECKDEPS)
|
||||||
|
|
Loading…
Reference in a new issue