forked from netz98/n98-magerun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
29 lines (24 loc) · 959 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
language: php
branches:
only:
- master
- develop
env:
- MAGENTO_VERSION="magento-mirror-1.4.2.0" DB=mysql
- MAGENTO_VERSION="magento-mirror-1.5.1.0" DB=mysql
- MAGENTO_VERSION="magento-ce-1.6.2.0" DB=mysql
- MAGENTO_VERSION="magento-ce-1.7.0.2" DB=mysql
- MAGENTO_VERSION="magento-ce-1.8.0.0" DB=mysql
php:
- 5.3
- 5.4
- 5.5
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev --prefer-source
- mysql -e 'CREATE DATABASE IF NOT EXISTS `magento_travis`;'
- export N98_MAGERUN_TEST_MAGENTO_ROOT="./${MAGENTO_VERSION}"
- bin/n98-magerun install --magentoVersionByName="${MAGENTO_VERSION}" --installationFolder="./${MAGENTO_VERSION}" --dbHost=localhost --dbUser=root --dbPass='' --dbName="magento_travis" --installSampleData=yes --useDefaultConfigParams=yes --baseUrl="http://travis.magento.local/"
script:
- vendor/bin/phpunit
- php tests/check-coverage.php clover.xml 65