File tree 1 file changed +0
-12
lines changed
1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -37,22 +37,10 @@ cs-fix: ## Fix any automatically fixable code style issues
37
37
cs : # # Check the code for code style issues
38
38
$(DOCKER_RUN ) vendor/bin/phpcs --parallel=$(shell nproc) --standard=./etc/qa/phpcs.xml
39
39
40
- stan : # # Run static analysis (PHPStan)
41
- $(DOCKER_RUN ) vendor/bin/phpstan analyse src tests --level max --ansi -c ./etc/qa/phpstan.neon
42
-
43
- psalm : # # Run static analysis (Psalm)
44
- $(DOCKER_RUN ) vendor/bin/psalm --threads=$(shell nproc) --shepherd --stats --config=./etc/qa/psalm.xml
45
-
46
40
unit-testing : # # Run tests
47
41
$(DOCKER_RUN ) vendor/bin/phpunit --colors=always -c ./etc/qa/phpunit.xml
48
42
$(DOCKER_RUN ) test -n " $( COVERALLS_REPO_TOKEN) " && test -n " $( COVERALLS_RUN_LOCALLY) " && test -f ./var/tests-unit-clover-coverage.xml && vendor/bin/php-coveralls -v --coverage_clover ./build/logs/clover.xml --json_path ./var/tests-unit-clover-coverage-upload.json || true
49
43
50
- mutation-testing : # # Run mutation testing
51
- $(DOCKER_RUN ) vendor/bin/infection --ansi --min-msi=100 --min-covered-msi=100 --threads=$(shell nproc) --ignore-msi-with-no-mutations || (cat ./var/infection.log && false)
52
-
53
- backward-compatibility-check : # # Check code for backwards incompatible changes
54
- $(DOCKER_RUN ) vendor/bin/roave-backward-compatibility-check || true
55
-
56
44
shell : # # Provides Shell access in the expected environment ###
57
45
$(DOCKER_RUN ) ash
58
46
You can’t perform that action at this time.
0 commit comments