Skip to content

Commit

Permalink
fix phpunit.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
frank-q committed Nov 14, 2020
1 parent 2cf5e3e commit e6f40c1
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 12 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,8 @@
## 2.0.1 - 14-11-2020

### Bug fix
- Fixed to correct phpunit.xml

## 2.0.0 - 14-11-2020

### Compatibility
Expand Down
33 changes: 21 additions & 12 deletions phpunit.xml
@@ -1,13 +1,22 @@
<?xml version="1.0"?>
<ruleset>
<arg name="basepath" value="."/>
<arg name="extensions" value="php"/>
<arg name="parallel" value="80"/>
<arg name="colors"/>
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.4/phpunit.xsd"
backupGlobals="false"
colors="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="vendor/autoload.php"
>
<testsuites>
<testsuite name="Test">
<directory suffix=".php">./tests/</directory>
</testsuite>
</testsuites>

<!-- Ignore warnings, show progress of the run and show sniff names -->
<arg value="nps"/>

<!-- Include full Qlimix Coding Standard -->
<rule ref="Qlimix"/>
</ruleset>
<filter>
<whitelist>
<directory suffix=".php">./src/</directory>
</whitelist>
</filter>
</phpunit>

0 comments on commit e6f40c1

Please sign in to comment.