This repository has been archived by the owner on Jan 17, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(docker): Use "pcov" instead of "xdebug" as code coverage engine
Xdebug is incompatible with swoole because it causes core dumps when using swoole coroutines.
- Loading branch information
Showing
4 changed files
with
76 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,19 @@ | ||
.PHONY: clean-coverage | ||
clean-coverage: | ||
.PHONY: clean/coverage | ||
clean/coverage: | ||
@rm -rf cov/* | ||
@rm -rf clover.xml | ||
|
||
.PHONY: clean-test-resources | ||
clean-test-resources: | ||
.PHONY: clean/tests/resources | ||
clean/tests/resources: | ||
@rm -rf tests/Fixtures/resources/*.pid | ||
|
||
.PHONY: clean-fixtures-cache | ||
clean-fixtures-cache: | ||
.PHONY: clean/fixtures/cache | ||
clean/fixtures/cache: | ||
@rm -rf tests/Fixtures/Symfony/app/var/cache/* | ||
|
||
.PHONY: clean-fixtures-logs | ||
clean-fixtures-logs: | ||
.PHONY: clean/fixtures/logs | ||
clean/fixtures/logs: | ||
@rm -rf tests/Fixtures/Symfony/app/var/log/* | ||
|
||
.PHONY: clean | ||
clean: clean-coverage clean-fixtures-cache clean-fixtures-logs clean-test-resources | ||
|
||
clean: clean/coverage clean/fixtures/cache clean/fixtures/logs clean/tests/resources |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters