We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77b90e9 commit 23f6966Copy full SHA for 23f6966
Makefile
@@ -29,15 +29,15 @@ setup-virtualenv:
29
# Run the main test suite
30
test:
31
@test -e $(pytest) || $(MAKE) install-tests
32
- @$(pytest) tests -m 'not slow'
+ @$(pytest) -vvv tests -m 'not slow'
33
34
test-refresh: install-tests test
35
36
test-junit: install-tests
37
- @$(pytest) tests --junit-xml .pytest_results/pytest.xml
+ @$(pytest) -vvv tests --junit-xml .pytest_results/pytest.xml
38
39
test-coverage: install-tests
40
- @$(pytest) tests \
+ @$(pytest) -vvv tests \
41
--junit-xml .pytest_results/pytest.xml \
42
--cov mqttwarn --cov-branch \
43
--cov-report term-missing \
0 commit comments