Changeset 23322 for branches


Ignore:
Timestamp:
2014/01/08 23:10:56 (10 years ago)
Author:
kimoto
Message:

#150 (ユニットテスト環境の整備)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/build.xml

    r23321 r23322  
    2727  <target name="checkstyle" description="Find coding standard violations using PHP_CodeSniffer creating a log file for the continuous integration server"> 
    2828      <exec executable="phpcs" output="/dev/null"> 
    29           <arg line="-v  
    30               --report=checkstyle 
    31               --report-file=reports/checkstyle.xml 
    32               --standard=${basedir}/tests/ruleset.xml 
    33               --extensions=php 
    34               --ignore=${basedir}/data/Smarty,${basedir}/data/smarty_extends,${basedir}/data/cache,${basedir}/data/module,${basedir}/data/mtb_constants_init.php 
    35               data/" /> 
     29          <arg value="-v" /> 
     30          <arg value="--report=checkstyle" /> 
     31          <arg value="--standard=tests/ruleset.xml" /> 
     32          <arg value="--extensions=php" /> 
     33          <arg value="--ignore=data/Smarty,data/smarty_extends,data/cache,data/module,data/mtb_constants_init.php" /> 
     34          <arg value="--report-file=reports/checkstyle.xml" /> 
     35          <arg path="data/" /> 
    3636      </exec> 
    3737  </target> 
Note: See TracChangeset for help on using the changeset viewer.