summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Haller <stefan@haller-berlin.de>2023-09-09 17:33:58 +0200
committerStefan Haller <stefan@haller-berlin.de>2023-09-25 09:09:41 +0200
commit508b869773a4d37cf24c8248a4e959bd807b1c78 (patch)
tree231e07fe6018ef6fc27811e25df70ef19bca5af2
parent59cc6843e6e9b969759291571cab876b0a5cdac4 (diff)
Pass MAKECMDGOALS to make integration-test-tui
We need this to be able to pass the "-race" argument, i.e. make integration-test-tui -- -race
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f10109c19..a220b68b3 100644
--- a/Makefile
+++ b/Makefile
@@ -44,7 +44,7 @@ update-cheatsheet:
# For more details about integration test, see https://github.com/jesseduffield/lazygit/blob/master/pkg/integration/README.md.
.PHONY: integration-test-tui
integration-test-tui:
- go run cmd/integration_test/main.go tui
+ go run cmd/integration_test/main.go tui $(filter-out $@,$(MAKECMDGOALS))
.PHONY: integration-test-cli
integration-test-cli: