mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-05 20:57:12 +00:00
29 lines
1.2 KiB
Makefile
29 lines
1.2 KiB
Makefile
init:
|
|
composer install --no-interaction --no-scripts
|
|
bin/console sylius:install --no-interaction
|
|
bin/console sylius:fixtures:load default --no-interaction
|
|
yarn install --pure-lockfile
|
|
yarn build
|
|
|
|
ci:
|
|
composer install --no-interaction --no-scripts
|
|
composer dump-env $APP_ENV
|
|
bin/console sylius:install --no-interaction
|
|
bin/console sylius:fixtures:load default --no-interaction
|
|
bin/console cache:warmup
|
|
yarn install --pure-lockfile
|
|
yarn build
|
|
vendor/bin/phpunit
|
|
vendor/bin/phpspec run --ansi --no-interaction -f dot
|
|
vendor/bin/behat --strict --no-interaction -vvv -f progress --tags="~@javascript&&@cli&&~@todo" || vendor/bin/behat --strict --no-interaction -vvv -f progress --tags="~@javascript&&@cli&&~@todo" --rerun # CLI Behat
|
|
vendor/bin/behat --strict --no-interaction -vvv -f progress --tags="~@javascript&&~@cli&&~@todo" || vendor/bin/behat --strict --no-interaction -vvv -f progress --tags="~@javascript&&~@cli&&~@todo" --rerun # NON JS Behat
|
|
#vendor/bin/behat --strict --no-interaction -vvv -f progress --tags="@javascript&&~@cli&&~@todo" # JS Behat
|
|
|
|
unit:
|
|
vendor/bin/phpunit
|
|
|
|
spec:
|
|
vendor/bin/phpspec run --ansi --no-interaction -f dot
|
|
|
|
behat:
|
|
vendor/bin/behat --colors --strict --stop-on-failure --no-interaction -vvv -f progress
|