From cf4f2209ff351022a93bba0c121e5b52c25ffd00 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Sun, 17 Aug 2014 16:59:37 +0200 Subject: [PATCH] [ticket/331] Run spellchecker on travis again --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index e34cfaff..c09be30e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,6 +33,7 @@ env: - IMAGE_ICC="0" # Should we run icc profile sniffer on your images? - COVERALLS="1" # Should we run coveralls? - EPV="1" # Should we run EPV (Extension Pre Validator) on your code? + - SPELLCHECK="1" # Should the php files be checked for obvious spelling errors? - PHPBB_BRANCH="develop-ascraeus" branches: @@ -59,6 +60,7 @@ script: - sh -c "if [ '$IMAGE_ICC' != '0' ]; then travis/check-image-icc-profiles.sh $DB $TRAVIS_PHP_VERSION; fi" - ../board3/Board3-Portal/travis/run-testsuite.sh $DB $TRAVIS_PHP_VERSION - sh -c "if [ '$EPV' != '0' ]; then ../board3/Board3-Portal/travis/run-epv.sh $DB $TRAVIS_PHP_VERSION $EXTNAME; fi" + - sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.5' -a '$DB' = 'mysqli' -a '$SPELLCHECK' != '0' ]; then php ../board3/Board3-Portal/develop/spellchecker.php; fi" after_script: - sh -c "if [ '$COVERALLS' != '0' ]; then ../board3/Board3-Portal/travis/run-coveralls.sh $DB $TRAVIS_PHP_VERSION; fi"