Files
jianfeng-server/vendor/mtdowling/jmespath.php/Makefile
2025-10-02 10:33:06 +08:00

20 lines
265 B
Makefile
Executable File

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