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.

13 lines
189 B

3 years ago
  1. all: clean test
  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/*