You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2 years ago
12345678910111213141516171819
  1. all: clean coverage
  2. test:
  3. vendor/bin/phpunit
  4. coverage:
  5. vendor/bin/phpunit --coverage-html=artifacts/coverage
  6. view-coverage:
  7. open artifacts/coverage/index.html
  8. clean:
  9. rm -rf artifacts/*
  10. rm -rf compiled/*
  11. perf:
  12. php bin/perf.php
  13. .PHONY: test coverage perf