Static analysis of unittest code.
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2023-07-10 09:20:36 +00:00
parent 534c8cdbe6
commit 3b9cea1c70
6 changed files with 81 additions and 65 deletions

View File

@ -3,13 +3,13 @@ analyze: analyze-yaml analyze-phpmd analyze-phpstan analyze-psalm analyze-phpcs
analyze-yaml:
vendor/bin/yaml-lint *.yml
analyze-phpmd:
vendor/bin/phpmd src text cleancode,codesize,controversial,design,naming,unusedcode
vendor/bin/phpmd src,tests text cleancode,codesize,controversial,design,naming,unusedcode
analyze-phpstan:
vendor/bin/phpstan analyze --level=8 --error-format=raw src/ backup
vendor/bin/phpstan analyze --level=8 --error-format=raw src/ backup tests
analyze-psalm:
vendor/bin/psalm --no-cache
analyze-phpcs:
vendor/bin/phpcs src backup --report=emacs --standard=PSR12
vendor/bin/phpcs src backup tests --report=emacs --standard=PSR12
docs:
./phpDocumentor.phar --setting=graphs.enabled=true
@ -19,7 +19,7 @@ install:
install-dev:
php composer.phar install
test:
vendor/bin/phpunit tests
vendor/bin/phpunit tests --display-warnings
test-coverage:
vendor/bin/phpunit tests --testdox --coverage-filter src --coverage-html output/coverage --coverage-text --branch-coverage --testdox-html output/test.html
vendor/bin/phpunit tests --testdox --coverage-filter src --coverage-html output/coverage --coverage-text --path-coverage --testdox-html output/test.html