forked from PackageFactory/PackageFactory.ComponentEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
30 lines (26 loc) · 648 Bytes
/
Makefile
File metadata and controls
30 lines (26 loc) · 648 Bytes
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
analyse::
./vendor/bin/phpstan analyse --level 8 src test
test::
./vendor/bin/phpunit \
--enforce-time-limit \
--bootstrap vendor/autoload.php \
--testdox test/Integration \
--coverage-html build/coverage-report \
--whitelist src
test-unit::
./vendor/bin/phpunit \
--enforce-time-limit \
--bootstrap vendor/autoload.php \
--testdox test/Unit \
--coverage-html build/coverage-report \
--whitelist src
test-filter::
./vendor/bin/phpunit \
--bootstrap vendor/autoload.php \
--testdox \
--filter $(filter)
update::
./vendor/bin/phpunit \
--bootstrap vendor/autoload.php \
--testdox test \
-d --update-snapshots