- Created a new template for the cart rule form with custom label, switch, and choice widgets. - Implemented the InPost Pay block in the order details template for displaying delivery method, APM, and VAT invoice request. - Added legacy support for the order details template to maintain compatibility with older PrestaShop versions.
13 lines
296 B
YAML
13 lines
296 B
YAML
language: php
|
|
dist: trusty
|
|
sudo: false
|
|
php:
|
|
- 7.1
|
|
- 7.2
|
|
- 7.3
|
|
install: composer install
|
|
script: ./vendor/bin/phpunit --coverage-clover=coverage.clover
|
|
after_script:
|
|
- wget https://scrutinizer-ci.com/ocular.phar
|
|
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
|