We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db52f95 commit 0eb5c3bCopy full SHA for 0eb5c3b
2 files changed
.gitignore
@@ -1,3 +1,4 @@
1
vendor
2
build
3
.idea
4
+/coverage.xml
Makefile
@@ -11,7 +11,7 @@ test:
11
@php -derror_reporting="E_ALL & ~E_DEPRECATED" vendor/bin/phpunit --configuration phpunit.xml
12
13
test-coverage:
14
- @php -derror_reporting="E_ALL & ~E_DEPRECATED" -dzend_extension=xdebug.so vendor/bin/phpunit --configuration phpunit.xml --coverage-text --coverage-clover=coverage.xml
+ @php -derror_reporting="E_ALL & ~E_DEPRECATED" -dzend_extension=xdebug.so -dxdebug.mode=coverage vendor/bin/phpunit --configuration phpunit.xml --coverage-text --coverage-clover=coverage.xml
15
16
test-go:
17
@cd tests/resources/go && GO111MODULE=on go test ./...
0 commit comments