Skip to content
Snippets Groups Projects
Commit 18831ead authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Require phpunit directly instead of through the symfony bridge

So the testing dependencies are pinned as well.
parent 3e837e43
No related branches found
No related tags found
1 merge request!79Require phpunit directly instead of through the symfony bridge
Pipeline #80822 passed
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
"friendsofphp/php-cs-fixer": "^3.0", "friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.0.0", "phpstan/phpstan": "^1.0.0",
"phpstan/phpstan-phpunit": "^1.0.0", "phpstan/phpstan-phpunit": "^1.0.0",
"phpunit/phpunit": "^9",
"symfony/browser-kit": "^5.3", "symfony/browser-kit": "^5.3",
"symfony/http-client": "^5.3", "symfony/http-client": "^5.3",
"symfony/phpunit-bridge": "^5.3", "symfony/phpunit-bridge": "^5.3",
...@@ -70,14 +71,12 @@ ...@@ -70,14 +71,12 @@
"post-install-cmd": "cghooks add --ignore-lock", "post-install-cmd": "cghooks add --ignore-lock",
"post-update-cmd": "cghooks update", "post-update-cmd": "cghooks update",
"test": [ "test": [
"@php vendor/bin/simple-phpunit" "@php vendor/bin/phpunit"
], ],
"phpstan": [ "phpstan": [
"@php vendor/bin/simple-phpunit --atleast-version 0",
"@php vendor/bin/phpstan analyze --ansi" "@php vendor/bin/phpstan analyze --ansi"
], ],
"psalm": [ "psalm": [
"@php vendor/bin/simple-phpunit --atleast-version 0",
"@php vendor/bin/psalm" "@php vendor/bin/psalm"
], ],
"lint": [ "lint": [
...@@ -92,7 +91,7 @@ ...@@ -92,7 +91,7 @@
"@php vendor/bin/php-cs-fixer --ansi fix --dry-run --diff" "@php vendor/bin/php-cs-fixer --ansi fix --dry-run --diff"
], ],
"coverage": [ "coverage": [
"@php -dxdebug.mode=coverage vendor/bin/simple-phpunit --coverage-html _coverage" "@php -dxdebug.mode=coverage vendor/bin/phpunit --coverage-html _coverage"
] ]
} }
} }
This diff is collapsed.
...@@ -7,8 +7,6 @@ parameters: ...@@ -7,8 +7,6 @@ parameters:
paths: paths:
- src - src
- tests - tests
bootstrapFiles:
- vendor/bin/.phpunit/phpunit-9-0/vendor/autoload.php
excludePaths: excludePaths:
- tests/bootstrap.php - tests/bootstrap.php
- src/Swagger/DocumentationNormalizer.php - src/Swagger/DocumentationNormalizer.php
......
...@@ -11,8 +11,6 @@ ...@@ -11,8 +11,6 @@
<ini name="error_reporting" value="-1"/> <ini name="error_reporting" value="-1"/>
<server name="APP_ENV" value="test" force="true"/> <server name="APP_ENV" value="test" force="true"/>
<server name="SHELL_VERBOSITY" value="-1"/> <server name="SHELL_VERBOSITY" value="-1"/>
<server name="SYMFONY_PHPUNIT_REMOVE" value=""/>
<server name="SYMFONY_PHPUNIT_VERSION" value="9"/>
<server name="SYMFONY_DEPRECATIONS_HELPER" value='max[direct]=0&amp;quiet[]=indirect'/> <server name="SYMFONY_DEPRECATIONS_HELPER" value='max[direct]=0&amp;quiet[]=indirect'/>
<server name="KERNEL_CLASS" value="Dbp\Relay\CoreBundle\Tests\Kernel"/> <server name="KERNEL_CLASS" value="Dbp\Relay\CoreBundle\Tests\Kernel"/>
</php> </php>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment