Revert "Make the PHP test runner conifigurable"

This reverts commit 5f62b02d14.
This commit is contained in:
Oliver Davies 2024-02-19 10:52:09 +00:00
parent bc9b18268f
commit b60cd7ae1b
3 changed files with 2 additions and 9 deletions

View file

@ -1,9 +1,6 @@
drupal: drupal:
docroot: web docroot: web
php:
test_runner: phpunit
experimental: experimental:
runStaticAnalysisOnTests: false runStaticAnalysisOnTests: false

View file

@ -239,10 +239,6 @@ final class ConfigDto
'phpunit' => new Assert\Optional( 'phpunit' => new Assert\Optional(
new Assert\IsFalse(), new Assert\IsFalse(),
), ),
'test_runner' => new Assert\Optional(
new Assert\Choice(['phpunit', 'pest', 'paratest']),
),
], ],
)] )]
public array $php; public array $php;

View file

@ -111,9 +111,9 @@ function stop {
docker compose down docker compose down
} }
{% if not php.phpunit is same as false and not php.test_runner is same as false %} {% if not php.phpunit is same as false %}
function test { function test {
_exec php {{ php.test_runner }} --colors=always "${@}" _exec php phpunit --colors=always "${@}"
} }
{% endif %} {% endif %}