Skip to content
This repository has been archived by the owner on Apr 3, 2019. It is now read-only.

Commit

Permalink
Dogfood QA Tools 3.0.0-alpha2
Browse files Browse the repository at this point in the history
 * Don't use generated Ant build file; our QA process is custom and too complex to ever want to offer using QA Tools configuration. This commit does try to stay as close as possible to the commands from the build file.
 * As QA Tools doesn't (yet?) support multiple test suites in PHPUnit, they are now organised by directory, rather than by suite.
 * As QA Tools doesn't (yet?) support a configured PHPUnit bootstrap file, it is passed to the binary using an option
  • Loading branch information
Reinier Kip committed Feb 24, 2017
1 parent 968de08 commit d41ca89
Show file tree
Hide file tree
Showing 16 changed files with 317 additions and 248 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@
/var/cache/*
/bin/box
/box.json
/build.xml
/signing-key-*.pem
17 changes: 8 additions & 9 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ test: test-unit test-integration test-system-dev code-metrics clean build-test t
test-fast: test-unit test-integration test-system-dev code-metrics verify-readme-installer-hash

coverage:
vendor/bin/phpunit -c . --testsuite unit,integration --coverage-text

vendor/bin/phpunit --coverage-text --bootstrap tests/bootstrap.php --exclude-group system

test-unit: phpunit-unit
test-integration: phpunit-integration
Expand All @@ -48,21 +47,21 @@ verify-build: test-no-absolute-paths-in-container


phpunit-unit:
vendor/bin/phpunit -c . --testsuite unit
vendor/bin/phpunit tests/unit --bootstrap tests/bootstrap.php
phpunit-integration:
vendor/bin/phpunit -c . --testsuite integration
vendor/bin/phpunit tests/integration --bootstrap tests/bootstrap.php
phpunit-system-dev:
vendor/bin/phpunit -c . --testsuite system
vendor/bin/phpunit tests/system --bootstrap tests/bootstrap.php
phpunit-system-phar:
QA_TOOLS_BIN=phar vendor/bin/phpunit -c . --testsuite system
QA_TOOLS_BIN=phar vendor/bin/phpunit tests/system --bootstrap tests/bootstrap.php
phplint:
vendor/bin/parallel-lint -e php --exclude vendor .
vendor/bin/parallel-lint --exclude vendor -e php .
phpcs:
# Blank line is needed to provide STDIN input to phpcs when phpcs is called from the Git pre-push hook context
# See https://github.com/squizlabs/PHP_CodeSniffer/issues/993
echo '' | vendor/bin/phpcs --runtime-set ignore_warnings_on_exit 1 --standard=phpcs.xml --extensions=php --report=full src
echo '' | vendor/bin/phpcs --runtime-set ignore_warnings_on_exit 1 --report=full --standard=ruleset.xml --extensions=php/php src
phpmd:
vendor/bin/phpmd src text phpmd.xml
vendor/bin/phpmd src text phpmd.xml --suffixes php


verify-test-build-is-signed: build-test
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@
"jakub-onderka/php-parallel-lint": "^0.9.2",
"liip/rmt": "^1.2.5",
"mockery/mockery": "^0.9.4",
"phpmd/phpmd": "^2.4",
"phpunit/phpunit": "^5.4",
"phpmd/phpmd": "^2.0",
"phpunit/phpunit": "^5.7",
"sebastian/diff": "^1.4",
"sebastian/exporter": "^1.2",
"sebastian/exporter": "^2",
"sensiolabs/security-checker": "^3.0",
"squizlabs/php_codesniffer": "^2.6",
"squizlabs/php_codesniffer": "^2.7",
"symfony/filesystem": "^3.1"
},
"config": {
Expand Down
Loading

0 comments on commit d41ca89

Please sign in to comment.