File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -148,19 +148,23 @@ bash zsh: venv
148
148
bash zsh : # # Run bash or zsh with the venv activated
149
149
$(ACTIVATE ) exec $@
150
150
151
+ .PHONY : lint
151
152
lint : venv
152
153
lint : # # Run all configured tools in pre-commit
153
154
$(PRE_COMMIT ) run -a
154
155
156
+ .PHONY : lint-manual
155
157
lint-manual : venv
156
158
lint-manual : # # Run all manual tools in pre-commit
157
159
$(PRE_COMMIT ) run --hook-stage manual -a
158
160
161
+ .PHONY : coverage
162
+ coverage : # # Build and run the tests with the GCOV profile and process the results
159
163
coverage : venv
160
164
$(MAKE ) CONFIG=Gcov test
161
- $(ACTIVATE ) cmake --build $(_build_path ) --config $( CONFIG ) --target process_coverage
165
+ $(ACTIVATE ) cmake --build $(_build_path ) --config Gcov --target process_coverage
162
166
163
167
# Help target
164
168
.PHONY : help
165
169
help : # # Show this help.
166
- @awk ' BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST ) targets.mk | sort
170
+ @awk ' BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST ) | sort
You can’t perform that action at this time.
0 commit comments