Makefile - silence skipped tests when focusing on a file
Signed-off-by: Ygal Blum <ygal.blum@gmail.com>
This commit is contained in:
parent
857a47de9b
commit
23f256349b
5
Makefile
5
Makefile
|
|
@ -655,8 +655,9 @@ ginkgo-run: .install.ginkgo
|
||||||
$(GINKGO) version
|
$(GINKGO) version
|
||||||
$(GINKGO) -vv $(TESTFLAGS) --tags "$(TAGS) remote" $(GINKGOTIMEOUT) --flake-attempts $(GINKGO_FLAKE_ATTEMPTS) \
|
$(GINKGO) -vv $(TESTFLAGS) --tags "$(TAGS) remote" $(GINKGOTIMEOUT) --flake-attempts $(GINKGO_FLAKE_ATTEMPTS) \
|
||||||
--trace $(if $(findstring y,$(GINKGO_NO_COLOR)),--no-color,) \
|
--trace $(if $(findstring y,$(GINKGO_NO_COLOR)),--no-color,) \
|
||||||
$(if $(findstring y,$(GINKGO_PARALLEL)),-p,) $(if $(FOCUS),--focus "$(FOCUS)",) \
|
$(if $(findstring y,$(GINKGO_PARALLEL)),-p,) \
|
||||||
$(if $(FOCUS_FILE),--focus-file "$(FOCUS_FILE)",) $(GINKGOWHAT)
|
$(if $(FOCUS),--focus "$(FOCUS) --silence-skips",) \
|
||||||
|
$(if $(FOCUS_FILE),--focus-file "$(FOCUS_FILE)" --silence-skips,) $(GINKGOWHAT)
|
||||||
|
|
||||||
.PHONY: ginkgo
|
.PHONY: ginkgo
|
||||||
ginkgo:
|
ginkgo:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue