Skip to content
Snippets Groups Projects
Commit b41e36bc authored by jurgenhaas's avatar jurgenhaas
Browse files

#6 Add php stand dependencies,...

#6 Add php stand dependencies, configuration and ahoy commands
parent dfb13fd6
No related branches found
No related tags found
1 merge request!2Merging develop into main
Pipeline #542950 passed
......@@ -38,3 +38,12 @@ commands:
phpunit:list:groups:
cmd: ahoy d4d exec vendor/bin/phpunit --configuration /var/www/html/tests/phpunit.xml.dist --list-groups "$@"
usage: List available test groups of PHP unit tests
phpstan:
cmd: ahoy d4d exec vendor/bin/phpstan analyze --configuration=/var/www/html/tests/phpstan.neon "$@"
usage: PHPStan tests
phpstanmodule:
cmd: |
module=$1
shift
ahoy d4d exec vendor/bin/phpstan analyze --configuration=/var/www/html/tests/phpstan.neon web/modules/contrib/$module $@
usage: PHPStan tests by module
......@@ -120,13 +120,14 @@ class Handler extends BaseHandler {
$handler->configureProject();
// Copy Test files.
foreach (['phpcs.files', 'phpunit.xml.dist'] as $template) {
foreach (['phpcs.files', 'phpstan.neon', 'phpunit.xml.dist'] as $template) {
$rendered = $this->config->render($template, file_get_contents($pluginRoot . '/templates/tests/' . $template));
file_put_contents('tests/' . $template, $rendered);
}
// Git Ignore test files.
$this->gitIgnore('tests/phpcs.files');
$this->gitIgnore('tests/phpstan.neon');
$this->gitIgnore('tests/phpunit.xml.dist');
$this->gitIgnore('tests/codesniffer_results.txt');
$this->gitIgnore('tests/checkstyle.xml');
......
parameters:
level: 2
reportUnmatchedIgnoredErrors: false
customRulesetUsed: true
checkMissingIterableValueType: false
fileExtensions:
- module
- theme
- profile
- install
ignoreErrors:
- '#Plugin definitions cannot be altered.#'
includes:
- /drupal/vendor/mglaman/phpstan-drupal/extension.neon
- /drupal/vendor/phpstan/phpstan-deprecation-rules/rules.neon
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment