Skip to content

Commit e59dbb3

Browse files
committed
Remove code coverage for now
1 parent 97d473d commit e59dbb3

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

.github/workflows/php.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,3 @@ jobs:
3939
run: |
4040
vendor/bin/phpunit
4141
42-
- name: Coveralls GitHub Action
43-
uses: coverallsapp/[email protected]
44-

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Google's reCAPTCHA PHP client library
22

33
[![Build Status](https://github.com/phpfui/recaptcha/actions/workflows/tests.yml/badge.svg)](https://github.com/phpfui/recaptcha/actions?query=workflow%3Atests)
4-
[![Coverage Status](https://coveralls.io/repos/github/google/recaptcha/badge.svg)](https://coveralls.io/github/phpfui/recaptcha)
54
[![Latest Stable Version](https://img.shields.io/packagist/v/phpfui/recaptcha.svg)](https://packagist.org/packages/phpfui/recaptcha)
65
![](https://img.shields.io/badge/PHPStan-level%206-brightgreen.svg?style=flat)
76

composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
"vendor/bin/php-cs-fixer -vvv fix --using-cache=no ."
3434
],
3535
"test": [
36-
"@putenv XDEBUG_MODE=coverage",
3736
"vendor/bin/phpunit --display-phpunit-deprecations"
3837
],
3938
"serve-examples": "@php -S localhost:8080 -t examples"

phpunit.xml.dist

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd" colors="true" displayDetailsOnTestsThatTriggerDeprecations="true" displayDetailsOnTestsThatTriggerErrors="true" displayDetailsOnTestsThatTriggerNotices="true" displayDetailsOnTestsThatTriggerWarnings="true" bootstrap="tests/bootstrap.php" cacheDirectory=".phpunit.cache">
3-
<coverage>
4-
<report>
5-
<clover outputFile="build/logs/clover.xml"/>
6-
</report>
7-
</coverage>
2+
<phpunit
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd"
5+
colors="true"
6+
displayDetailsOnTestsThatTriggerDeprecations="true"
7+
displayDetailsOnTestsThatTriggerErrors="true"
8+
displayDetailsOnTestsThatTriggerNotices="true"
9+
displayDetailsOnTestsThatTriggerWarnings="true"
10+
bootstrap="tests/bootstrap.php"
11+
cacheDirectory=".phpunit.cache">
812
<testsuites>
913
<testsuite name="reCAPTCHA Test Suite">
1014
<directory>tests/ReCaptcha/</directory>

0 commit comments

Comments
 (0)