2014-04-11 14:58:24 +00:00
|
|
|
all: clean coverage
|
|
|
|
|
2014-08-11 14:02:51 +00:00
|
|
|
release: tag
|
|
|
|
git push origin --tags
|
|
|
|
|
|
|
|
tag:
|
|
|
|
chag tag --sign --debug CHANGELOG.rst
|
|
|
|
|
2014-04-11 14:58:24 +00:00
|
|
|
test:
|
|
|
|
vendor/bin/phpunit
|
|
|
|
|
|
|
|
coverage:
|
|
|
|
vendor/bin/phpunit --coverage-html=artifacts/coverage
|
|
|
|
|
|
|
|
view-coverage:
|
|
|
|
open artifacts/coverage/index.html
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -rf artifacts/*
|