File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -82,14 +82,17 @@ test/styling: dependencies
82
82
${RUNTIME_TOOL} -m pycodestyle --statistics src/
83
83
84
84
test : env dependencies
85
- ${RUNTIME_TOOL} -m pytest --verbose -o log_cli=true --log-cli-level=${LOG_LEVEL} --full-trace src/
85
+ ${RUNTIME_TOOL} -m coverage run -m \
86
+ pytest --verbose \
87
+ -o log_cli=true \
88
+ --log-cli-level=${LOG_LEVEL} \
89
+ --full-trace src/
90
+ ${RUNTIME_TOOL} -m coverage report
86
91
87
- coverage : dependencies
88
- ${RUNTIME_TOOL} -m coverage run -m pytest --verbose src/
92
+ coverage : test
89
93
${RUNTIME_TOOL} -m coverage lcov -o coverage/lcov.info
90
- ${RUNTIME_TOOL} -m coverage report
91
94
92
- coverage/html : coverage
95
+ coverage/html : test
93
96
${RUNTIME_TOOL} -m coverage html
94
97
95
98
outdated :
You can’t perform that action at this time.
0 commit comments