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 8c9b7cf commit 6d5ef69Copy full SHA for 6d5ef69
ecommerce/pricing/Makefile
@@ -12,10 +12,10 @@ mutate: ## Run full mutation tests
12
13
mutate-changes: ## Run incremental mutation tests on changes
14
@echo "Running incremental mutation tests against $(GIT_BASE_SHA)..."
15
- @MUTANT_SINCE=$(GIT_BASE_SHA) RUBYOPT="-Ilib -Itest" bundle exec mutant run 'Pricing*'
+ @RUBYOPT="-Ilib -Itest" bundle exec mutant run --since $(GIT_BASE_SHA) 'Pricing*'
16
17
help:
18
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%%-30s\033[0m %%s\n", $$1, $$2}'
19
20
.PHONY: install test mutate mutate-changes help
21
-.DEFAULT_GOAL := help
+.DEFAULT_GOAL := help
0 commit comments