Changeset 22855
- Timestamp:
- 2013/06/06 17:50:51 (10 years ago)
- Location:
- branches/version-2_13-dev
- Files:
-
- 2 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_13-dev/.travis.yml
r22842 r22855 1 # for travis-ci 2 # see also. https://travis-ci.org 1 3 language: php 2 4 … … 10 12 11 13 before_script: 14 - curl -s http://getcomposer.org/installer | php 15 - php composer.phar install --dev --no-interaction 12 16 - sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'CREATE DATABASE myapp_test;'; fi" 13 17 - sh -c "if [ '$DB' = 'mysql' ]; then sh ./eccube_install.sh mysql; fi" … … 16 20 - cp tests/require.php.jenkins tests/require.php 17 21 - cat ./data/config/config.php 22 18 23 script: 19 - phpunit --bootstrap ./data/config/config.php --configuration tests/phpunit.xml.jenkins tests 24 - mkdir -p reports/coverage 25 - phpunit --log-tap reports/tap.log --log-junit reports/unitreport.xml --coverage-html reports/coverage --coverage-clover reports/coverage/coverage.xml --bootstrap ./data/config/config.php --configuration tests/phpunit.xml.jenkins tests 26 27 after_script: 28 - php vendor/bin/coveralls -v
Note: See TracChangeset
for help on using the changeset viewer.