Skip to content

Commit

Permalink
Fix master (#258)
Browse files Browse the repository at this point in the history
* Migrate PHPUnit configuration to new format

* Replace assertRegExp

* Add void

* Remove coverage from PHPUnit config

It's not expected anymore.

* Use `$this->expectException` instead of comment

* Ignore some tests

* Only PHP >7.4

Co-authored-by: Nyholm <[email protected]>
  • Loading branch information
ruudk and Nyholm authored Jan 12, 2022
1 parent f915b7a commit 61bc611
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 23 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
],
"homepage": "http://www.php-cache.com/en/latest/",
"require": {
"php": "^7.1 || ^8.0",
"php": ">=7.4",
"cache/tag-interop": "^1.0",
"psr/cache": "^1.0 || ^2.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
Expand Down
23 changes: 1 addition & 22 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,34 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>

<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="vendor/autoload.php"
>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" bootstrap="vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<testsuites>
<testsuite name="Main Test Suite">
<directory>./Tests/</directory>
</testsuite>
</testsuites>

<groups>
<exclude>
<group>benchmark</group>
</exclude>
</groups>

<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./Tests</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>

0 comments on commit 61bc611

Please sign in to comment.