Files
faveo/vendor/mtdowling/jmespath.php/Makefile
Manish Verma 76e85db070 update 1.0.8.0
Commits for version update
2016-10-17 12:02:27 +05:30

20 lines
265 B
Makefile

all: clean coverage
test:
vendor/bin/phpunit
coverage:
vendor/bin/phpunit --coverage-html=artifacts/coverage
view-coverage:
open artifacts/coverage/index.html
clean:
rm -rf artifacts/*
rm -rf compiled/*
perf:
php bin/perf.php
.PHONY: test coverage perf