Skip to content

Commit

Permalink
make: add test-all command
Browse files Browse the repository at this point in the history
  • Loading branch information
sc0Vu committed Dec 5, 2023
1 parent 706571c commit 5be093a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,12 @@ build-docker-containers: build-docker-katzenmint build-docker-server

.PHONY: clean-docker-images
clean-docker-images:
docker rmi -f $$(docker images | grep '^<none>' | awk '{print $$3}')
docker rmi -f $$(docker images | grep '^<none>' | awk '{print $$3}')

.PHONE: test-all
test-all:
@$(MAKE) $(MAKE_FLAGS) -C client/. test
@$(MAKE) $(MAKE_FLAGS) -C genconfig/. test
@$(MAKE) $(MAKE_FLAGS) -C katzenmint/. test
@$(MAKE) $(MAKE_FLAGS) -C plugin/. test
@$(MAKE) $(MAKE_FLAGS) -C server/. test

0 comments on commit 5be093a

Please sign in to comment.