forked from Sylius/Sylius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
28 lines (24 loc) · 1.02 KB
/
Makefile
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
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
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 --colors --strict --no-interaction -vvv -f progress --tags="~@javascript&&@cli&&~@todo" # CLI Behat
vendor/bin/behat --colors --strict --no-interaction -vvv -f progress --tags="~@javascript&&~@cli&&~@todo" # NON JS Behat
#vendor/bin/behat --colors --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