Integrate PHPCS

Fix absolute directory issue.

refs #4070
refs #4098
refs #4099
This commit is contained in:
Marius Hein 2013-06-03 15:24:39 +02:00
parent 0592bff4ef
commit 71f2c408df
3 changed files with 6 additions and 6 deletions

View File

@ -6,8 +6,8 @@ SCRIPTNAME=$(readlink -f $0)
DIR=$(dirname $SCRIPTNAME)
# Make sure that the destination directory for logs and reports exists
mkdir -p $DIR/build/log
mkdir -p $DIR/../../build/log
jshint --reporter=jslint "$@" ../.. > $DIR/build/log/jshint_results.xml
jshint --reporter=jslint "$@" $DIR/../.. > $DIR/../../build/log/jshint_results.xm
exit 0

View File

@ -6,9 +6,9 @@ SCRIPTNAME=$(readlink -f $0)
DIR=$(dirname $SCRIPTNAME)
# Make sure that the destination directory for logs and reports exists
mkdir -p $DIR/build/log
mkdir -p $DIR/../../build/log
mocha --reporter "xunit" --recursive "$@" . > $DIR/build/log/mocha_results.xml
mocha --reporter "cobertura" --recursive "$@" . > $DIR/build/log/mocha_coverage.xml
mocha --reporter "xunit" --recursive "$@" . > $DIR/../../build/log/mocha_results.xml
mocha --reporter "cobertura" --recursive "$@" . > $DIR/../../build/log/mocha_coverage.xml
exit 0

View File

@ -8,6 +8,6 @@ DIR=$(dirname $SCRIPTNAME)
# Make sure that the destination directory for logs and reports exists
mkdir -p $DIR/../../build/log
phpcs -p --standard=PSR2 --extensions=php --encoding=utf-8 --report-checkstyle=$DIR/build/log/phpcs_results.xml --ignore=vendor "$@" ../..
phpcs -p --standard=PSR2 --extensions=php --encoding=utf-8 --report-checkstyle=$DIR/build/log/phpcs_results.xml --ignore=vendor "$@" $DIR/../..
exit 0