im/vendor/guzzlehttp/guzzle-services/Makefile

16 lines
207 B
Makefile
Raw Permalink Normal View History

2023-09-26 18:09:46 +08:00
all: clean test
test:
vendor/bin/phpunit
coverage:
vendor/bin/phpunit --coverage-html=artifacts/coverage
view-coverage:
open artifacts/coverage/index.html
clean:
rm -rf artifacts/*
.PHONY: coverage