forked from opencfp/opencfp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
48 lines (34 loc) · 1.3 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
.PHONY: asset auto-review cache coverage cs database infection integration it stan test test-env unit
it: cs test
asset:
yarn install
yarn run production
auto-review: vendor
vendor/bin/phpunit --testsuite auto-review
cache: vendor
bin/console cache:clear --env=development
bin/console cache:clear --env=testing
coverage: vendor
if [ $(type) = "html" ]; then vendor/bin/phpunit --testsuite unit --coverage-html coverage; else vendor/bin/phpunit --testsuite unit --coverage-text; fi;
cs: vendor
vendor/bin/php-cs-fixer fix --verbose --diff
database: test-env vendor
mysql -uroot -e "DROP DATABASE IF EXISTS cfp_test"
mysql -uroot -e "CREATE DATABASE cfp_test"
CFP_ENV=testing vendor/bin/phinx migrate --environment testing
mysqldump -uroot cfp_test > tests/dump.sql
infection: vendor database
vendor/bin/infection --test-framework-options="--printer PHPUnit\\\TextUI\\\ResultPrinter"
integration: test-env vendor database cache
vendor/bin/phpunit --testsuite integration
stan: vendor
vendor/bin/phpstan analyse --level=2 src tests
test: auto-review integration unit
test-env:
if [ ! -f "config/testing.yml" ]; then cp config/testing.yml.dist config/testing.yml; fi
unit: vendor
vendor/bin/phpunit --testsuite unit
vendor: composer.json composer.lock
composer validate
composer normalize
composer install