awesome-compose/Makefile
Chad Metcalf 199da87b3b
Fixing Linux vs Mac Makefile differences.
Signed-off-by: Chad Metcalf <chad@docker.com>
2020-08-09 21:07:31 -07:00

15 lines
463 B
Makefile

.phony: test-all test-changed update-tests
BASE_REF ?= origin/master
all: test-changed
test-all:
@bats -T $(shell find . -name test.bats| sort )
test-changed:
@bats -T $(shell git diff --name-status ${BASE_REF} | awk '{ print $$2}' | xargs -I% dirname % | grep -v -E '(^\.|lib)' | xargs -I% echo "%/test.bats")
update-tests:
@find . -maxdepth 1 -type d -not -path '*/\.*' -not -path '.' -not -path './lib' -exec cp ./lib/test.bats.example {}/test.bats \;