Skip to content

Commit 23f6966

Browse files
committed
Make test output more verbose
1 parent 77b90e9 commit 23f6966

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ setup-virtualenv:
2929
# Run the main test suite
3030
test:
3131
@test -e $(pytest) || $(MAKE) install-tests
32-
@$(pytest) tests -m 'not slow'
32+
@$(pytest) -vvv tests -m 'not slow'
3333

3434
test-refresh: install-tests test
3535

3636
test-junit: install-tests
37-
@$(pytest) tests --junit-xml .pytest_results/pytest.xml
37+
@$(pytest) -vvv tests --junit-xml .pytest_results/pytest.xml
3838

3939
test-coverage: install-tests
40-
@$(pytest) tests \
40+
@$(pytest) -vvv tests \
4141
--junit-xml .pytest_results/pytest.xml \
4242
--cov mqttwarn --cov-branch \
4343
--cov-report term-missing \

0 commit comments

Comments
 (0)